class Rumonade::NoneClass

Represents an Option which is empty, accessed via the constant None

Public Instance Methods

==(other) click to toggle source
# File lib/rumonade/option.rb, line 117
def ==(other)
  other.equal?(self.class.instance)
end
empty?() click to toggle source

@return (see Option#empty?)

# File lib/rumonade/option.rb, line 113
def empty?
  true
end
to_s() click to toggle source
# File lib/rumonade/option.rb, line 121
def to_s
  "None"
end