Module: Puppet::Pops::Types::PStringType::ClassModule
- Defined in:
- lib/puppet/pops/types/types.rb
Instance Method Summary collapse
Instance Method Details
#==(o) ⇒ Object
160 161 162 |
# File 'lib/puppet/pops/types/types.rb', line 160 def ==(o) self.class == o.class && self.size_type == o.size_type && Set.new(values) == Set.new(o.values) end |
#hash ⇒ Object
156 157 158 |
# File 'lib/puppet/pops/types/types.rb', line 156 def hash [self.class, self.size_type, Set.new(self.values)].hash end |