= private = protected
reverse()
Reverses all characters in the string.
Example:
'Café'.mb_chars.reverse.to_s #=> 'éfaC'
# File activesupport/lib/active_support/multibyte/chars.rb, line 316 def reverse chars(self.class.u_unpack(@wrapped_string).reverse.pack('U*')) end