aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2014-12-29 05:39:05 +0100
committerDrahflow <drahflow@gmx.de>2014-12-29 05:39:05 +0100
commitdd97c531460ffbb059ac124e77fb511907184817 (patch)
tree6fd4cc50428ba5584dfa4924347b64a1308b956e /doc
parentca872b2f0bb4ed26bd40c6de24ee9fe930db3554 (diff)
Documented ' and '*
Diffstat (limited to 'doc')
-rw-r--r--doc/global.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/global.md b/doc/global.md
index efb84dc..b6d74b1 100644
--- a/doc/global.md
+++ b/doc/global.md
@@ -243,6 +243,27 @@ with the specified input and output types, executing the original function objec
0000000000000004
]
+`'`
+---
+
+Like `''`, but instead of full specifications, just takes a string consisting of digits, a `.` and more
+digits. The earlier digits specify scalar input types, the later digits specify scalar output types.
+
+ [ /a /ab /abc /abcd ] len dump
+ 0000000000000003
+ [ /a /ab /abc /abcd ] |len '0.0 * dump
+ [
+ 0000000000000001
+ 0000000000000002
+ 0000000000000003
+ 0000000000000004
+ ]
+
+`'*`
+----
+
+A shortcut for `'<string> *`.
+
`;`
---