class BareTypes::BarePrimitive

Public Instance Methods

==(other) click to toggle source

Types which are always equivalent to another instantiation of themselves Eg. Uint.new == Uint.new But Union.new(types1) != Union.new(types2)

since unions could have different sets of types
# File lib/types.rb, line 19
def ==(other)
  self.class == other.class
end
finalize_references(schema) click to toggle source
# File lib/types.rb, line 23
def finalize_references(schema)
end