class Nothing

Public Instance Methods

==(other) click to toggle source
# File lib/data.maybe.rb, line 96
def ==(other)
  case other
  when Nothing
    true
  else
    false
  end
end