class Mail::Multibyte::Chars

def include?(other)

'Café'.mb_chars.include?('é') # => true
Example:

Returns +true+ if contained string contains _other_. Returns +false+ otherwise.
def include?(other)
  # We have to redefine this method because Enumerable defines it.
  @wrapped_string.include?(other)
end