summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorAdam Crews <adam@pathdefender.com>2015-02-01 22:46:16 -0800
committerAdam Crews <adam@pathdefender.com>2015-02-01 22:46:16 -0800
commit53b1802a92010c9f2ef557005c57977cb219cb64 (patch)
treedf158afeed16baaf41cd109d90f4393e8976094b /README.markdown
parent5863ab3901368310186790980aea2b0bf7cecb06 (diff)
Add a ceiling function to complement the floor function.
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown3
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