class Mail::Multibyte::Chars
def include?(other)
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