summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorWilliam Langford <wlangfor@gmail.com>2017-02-05 01:28:15 -0500
committerWilliam Langford <wlangfor@gmail.com>2017-02-13 11:36:20 -0500
commit1c806b74eaeaa63802725b8329a68d83f73b551e (patch)
tree5f53b72a42c52df75a952470aec06bb3bf21afa0 /docs
parent8001955fb76f784480fba3300fea602012ee9446 (diff)
Add `builtins` builtin
Diffstat (limited to 'docs')
-rw-r--r--docs/content/3.manual/manual.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index 0f917426..adeeb7cf 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -1919,6 +1919,14 @@ sections:
This builtin outputs `true` if any value in the source stream
appears in the second stream, otherwise it outputs `false`.
+ - title: "`builtins`"
+ body: |
+
+ Returns a list of all builtin functions in the format `name/arity`.
+ Since functions with the same name but different arities are considered
+ separate functions, `all/0`, `all/1`, and `all/2` would all be present
+ in the list.
+
- title: Conditionals and Comparisons
entries:
- title: "`==`, `!=`"