9954133844
returns the min or max of all arguments given to them
13 lines
341 B
Ruby
13 lines
341 B
Ruby
module Puppet::Parser::Functions
|
|
newfunction(:max, :type => :rvalue, :doc => <<-EOS
|
|
Returns the highest value of all arguments.
|
|
Requires at least one argument.
|
|
EOS
|
|
) do |args|
|
|
|
|
raise(Puppet::ParseError, "max(): Wrong number of arguments " +
|
|
"need at least one") if args.size == 0
|
|
|
|
return args.max
|
|
end
|
|
end
|