diff options
author | TP Honey <tphoney@users.noreply.github.com> | 2017-08-11 09:56:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-11 09:56:53 +0100 |
commit | c7ac34da3a8b70500143e326f8c4fa27ae7da311 (patch) | |
tree | 26721306dc6501ada77e48111b8e94f9856cf0b8 /lib/puppet/parser/functions/round.rb | |
parent | b89d5f388ca701e38a0e0337408f5ccb7e68565f (diff) | |
parent | 016f4dfd7f0c8a6b5b98fa38cf70434603c75883 (diff) |
Merge branch 'master' into release
Diffstat (limited to 'lib/puppet/parser/functions/round.rb')
-rw-r--r-- | lib/puppet/parser/functions/round.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/round.rb b/lib/puppet/parser/functions/round.rb new file mode 100644 index 0000000..489c301 --- /dev/null +++ b/lib/puppet/parser/functions/round.rb @@ -0,0 +1,33 @@ +# +# round.rb +# + +module Puppet::Parser::Functions + newfunction(:round, :type => :rvalue, :doc => <<-EOS + Rounds a number to the nearest integer + + *Examples:* + + round(2.9) + + returns: 3 + + round(2.4) + + returns: 2 + + EOS + ) do |args| + + raise Puppet::ParseError, "round(): Wrong number of arguments given #{args.size} for 1" if args.size != 1 + raise Puppet::ParseError, "round(): Expected a Numeric, got #{args[0].class}" unless args[0].is_a? Numeric + + value = args[0] + + if value >= 0 + Integer(value + 0.5) + else + Integer(value - 0.5) + end + end +end |