class Parlour::Types::Set

A set with known element types.

Public Instance Methods

==(other) click to toggle source
# File lib/parlour/types.rb, line 289
def ==(other)
  Set === other && element == other.element
end
collection_name() click to toggle source
# File lib/parlour/types.rb, line 284
def collection_name
  'Set'
end