= private = protected
reverse()
Reverses all characters in the string.
'Café'.mb_chars.reverse.to_s # => 'éfaC'
# File activesupport/lib/active_support/multibyte/chars.rb, line 115 def reverse chars(@wrapped_string.scan(/\X/).reverse.join) end