= 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 106 def reverse chars(@wrapped_string.grapheme_clusters.reverse.join) end