summaryrefslogtreecommitdiff
path: root/docs/type_system/fn.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system/fn.md')
-rw-r--r--docs/type_system/fn.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/type_system/fn.md b/docs/type_system/fn.md
index 66a350e..c5c1ba7 100644
--- a/docs/type_system/fn.md
+++ b/docs/type_system/fn.md
@@ -10,7 +10,12 @@ Fn_class `alias Enum[
.regex
]
-Fn[Fn_class; RETURN_TYPE; Tuple[ARGS]; STATE; List]
+Fn[Fn_class; RETURN_TYPE; List[ARGS]; STATE; List]
+
+Fn[Fn_class; RETURN_TYPE; ARGS...]
+Fn[RETURN_TYPE; ARGS...]
+Fn[Fn_class; ARGS...]
+Fn[ARGS...]
```
# Function Classes
@@ -37,7 +42,7 @@ A list of tasks with state
## Generator
-A function for creating an iterator or closure
+A function for creating an iterator
## Iterator