Module: Puppet::Pops::Types::PStringType::ClassModule
- Defined in:
- lib/puppet/pops/types/types.rb
Instance Method Summary collapse
Instance Method Details
#==(o) ⇒ Object
172 173 174 |
# File 'lib/puppet/pops/types/types.rb', line 172 def ==(o) self.class == o.class && self.size_type == o.size_type && Set.new(values) == Set.new(o.values) end |
#hash ⇒ Object
168 169 170 |
# File 'lib/puppet/pops/types/types.rb', line 168 def hash [self.class, self.size_type, Set.new(self.values)].hash end |