Module: Puppet::Pops::Types::PStringType::ClassModule
- Defined in:
- lib/puppet/pops/types/types.rb
Instance Method Summary collapse
Instance Method Details
#==(o) ⇒ Object
205 206 207 |
# File 'lib/puppet/pops/types/types.rb', line 205 def ==(o) self.class == o.class && self.size_type == o.size_type && Set.new(values) == Set.new(o.values) end |
#hash ⇒ Object
201 202 203 |
# File 'lib/puppet/pops/types/types.rb', line 201 def hash [self.class, self.size_type, Set.new(self.values)].hash end |