Module: Puppet::Pops::Types::PStructType::ClassModule
- Defined in:
- lib/puppet/pops/types/types.rb
Instance Method Summary collapse
Instance Method Details
#==(o) ⇒ Object
263 264 265 |
# File 'lib/puppet/pops/types/types.rb', line 263 def ==(o) self.class == o.class && hashed_elements == o.hashed_elements end |
#clear_hashed_elements ⇒ Object
255 256 257 |
# File 'lib/puppet/pops/types/types.rb', line 255 def clear_hashed_elements @_hashed = nil end |
#hash ⇒ Object
259 260 261 |
# File 'lib/puppet/pops/types/types.rb', line 259 def hash [self.class, Set.new(elements)].hash end |
#hashed_elements_derived ⇒ Object
250 251 252 253 |
# File 'lib/puppet/pops/types/types.rb', line 250 def hashed_elements_derived @_hashed ||= elements.reduce({}) {|memo, e| memo[e.name] = e; memo } @_hashed end |