= private = protected
decompose()
Performs canonical decomposition on all the characters.
'é'.length # => 2 'é'.mb_chars.decompose.to_s.length # => 3
# File activesupport/lib/active_support/multibyte/chars.rb, line 131 def decompose chars(Unicode.decompose(:canonical, @wrapped_string.codepoints.to_a).pack("U*")) end