Method: Puppet::Pops::Types::TypeCalculator#max

Defined in:
lib/puppet/pops/types/type_calculator.rb

#max(a, b) ⇒ Object



772
773
774
# File 'lib/puppet/pops/types/type_calculator.rb', line 772

def max(a, b)
  a >= b ? a : b
end