class AnyValue::AnyString

Public Instance Methods

==(o) click to toggle source
# File lib/any_value.rb, line 103
def ==(o)
  o.is_a?(String)
end
to_str() click to toggle source
# File lib/any_value.rb, line 107
def to_str
  self
end