diff options
author | Adam Crews <adam@pathdefender.com> | 2015-02-01 22:46:16 -0800 |
---|---|---|
committer | Adam Crews <adam@pathdefender.com> | 2015-02-01 22:46:16 -0800 |
commit | 53b1802a92010c9f2ef557005c57977cb219cb64 (patch) | |
tree | df158afeed16baaf41cd109d90f4393e8976094b /README.markdown | |
parent | 5863ab3901368310186790980aea2b0bf7cecb06 (diff) |
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 e9a1f4e..3292d3e 100644 --- a/README.markdown +++ b/README.markdown @@ -124,6 +124,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 |