class Just

Public Instance Methods

==(other) click to toggle source
# File lib/data.maybe.rb, line 111
def ==(other)
  case other
  when Just
    other.map { |v| return v == @v }
  else
    false
  end
end