module Puppet::Pops::Types::PFloatType::ClassModule

Public Instance Methods

==(o) click to toggle source
# File lib/puppet/pops/types/types.rb, line 151
def ==(o)
  self.class == o.class && from == o.from && to == o.to
end
hash() click to toggle source
# File lib/puppet/pops/types/types.rb, line 147
def hash
  [self.class, from, to].hash
end