diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-09 14:01:57 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-09 14:01:57 -0400 |
| commit | 9d6a15b55bc948227401cb0be721e764e8053b50 (patch) | |
| tree | 01dc5d7f3465436236247987e1882f5ce18d3bba /docs/type_system/function.md | |
| parent | a13b72d789c6e2ee3d94bd1b19aad3dda0aea3c3 (diff) | |
add name to application
Diffstat (limited to 'docs/type_system/function.md')
| -rw-r--r-- | docs/type_system/function.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/function.md b/docs/type_system/function.md index ebd14ea..cd25254 100644 --- a/docs/type_system/function.md +++ b/docs/type_system/function.md @@ -3,20 +3,20 @@ --- ```text -Function_class `alias Enum[ +Function_class `alias Enum[Void .unknown; .incomplete; .native .task; process; .generator; .iterator; .closure; .bound; .regex ] -Function[Function_class; RETURN_TYPE; Collection[TYPE.SYMBOL]; STATE; List] +Function[Function_class; STATE; List; RETURN_TYPE; Collection[TYPE.SYMBOL]] ``` # Alias ```text -Fn[Generic.T; Collection[TYPE.SYMBOL]] `alias Function[Any; Generic.T; Collection[TYPE.SYMBOL]; STATE; List] +Fn[Generic.T; Collection[TYPE.SYMBOL]] `alias Function[Any; STATE; List; Generic.T; Collection[TYPE.SYMBOL]] ``` # Inline Definition |
