diff options
author | Morgan Haskel <morgan@puppetlabs.com> | 2015-03-03 15:59:06 -0800 |
---|---|---|
committer | Morgan Haskel <morgan@puppetlabs.com> | 2015-03-03 15:59:06 -0800 |
commit | 055083c117f79e03e7313f328f9e3e338d4dc6a9 (patch) | |
tree | 42439739120bbe8065180f6ab20fa683c32b9d9d /README.markdown | |
parent | 6d07a6a8095961ad58c155a62bcfea26136549bd (diff) | |
parent | 53b1802a92010c9f2ef557005c57977cb219cb64 (diff) | |
download | puppet-stdlib-055083c117f79e03e7313f328f9e3e338d4dc6a9.tar.gz puppet-stdlib-055083c117f79e03e7313f328f9e3e338d4dc6a9.tar.bz2 |
Merge pull request #407 from adamcrews/ceiling_function
Add a ceiling function to complement the floor function.
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 0ea0c4e..ac0cae6 100644 --- a/README.markdown +++ b/README.markdown @@ -122,6 +122,9 @@ string. *Type*: rvalue * `capitalize`: Capitalizes the first letter of a string or array of strings. Requires either a single string or an array as an input. *Type*: rvalue +* `ceiling`: Returns the smallest integer greater than or equal to the argument. +Takes a single numeric value as an argument. *Type*: rvalue + * `chomp`: Removes the record separator from the end of a string or an array of strings; for example, 'hello\n' becomes 'hello'. Requires a single string or array as an input. *Type*: rvalue |