summaryrefslogtreecommitdiff
path: root/functions/round.pp
diff options
context:
space:
mode:
authorEric Putnam <putnam.eric@gmail.com>2017-07-18 15:16:34 -0700
committerGitHub <noreply@github.com>2017-07-18 15:16:34 -0700
commit27003b7b2de5021c512b094050de9063f0f3a134 (patch)
tree0da0fc6f1116f665569aa63724e72f5c65b2d725 /functions/round.pp
parent596878a7bc1fd4a64da89c5c760accb3e8178ec1 (diff)
parent39ea2c0bc49d812f41dcbbed6635e25607f80970 (diff)
Merge pull request #748 from npwalker/add_round_function
Add a round function to complement ceiling and floor
Diffstat (limited to 'functions/round.pp')
-rw-r--r--functions/round.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/functions/round.pp b/functions/round.pp
new file mode 100644
index 0000000..6bad92d
--- /dev/null
+++ b/functions/round.pp
@@ -0,0 +1,9 @@
+function stdlib::round(
+ Numeric $input,
+) {
+ if $input >= 0 {
+ Integer( $input + 0.5 )
+ } else {
+ Integer( $input - 0.5 )
+ }
+}