class Orbacle::BottomType

Public Instance Methods

==(other) click to toggle source
# File lib/orbacle/bottom_type.rb, line 5
def ==(other)
  other.class == self.class
end
Also aliased as: eql?
bottom?() click to toggle source
# File lib/orbacle/bottom_type.rb, line 19
def bottom?
  true
end
each_possible_type() click to toggle source
# File lib/orbacle/bottom_type.rb, line 16
def each_possible_type
end
eql?(other)
Alias for: ==
hash() click to toggle source
# File lib/orbacle/bottom_type.rb, line 9
def hash
  [
    self.class,
  ].hash ^ BIG_VALUE
end