summaryrefslogtreecommitdiff
path: root/docs/type_system/tuple.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-09 10:07:44 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-09 10:07:44 -0400
commit4da9de3213a28c7e17945168acdb06308bb41df8 (patch)
tree6bc6a3ff8653eb7bfe6591c36a7ab9b491649b9d /docs/type_system/tuple.md
parentfaac96fff84c45acf20af0515e8fd43af32fdaca (diff)
use group for tuple and table
Diffstat (limited to 'docs/type_system/tuple.md')
-rw-r--r--docs/type_system/tuple.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/type_system/tuple.md b/docs/type_system/tuple.md
deleted file mode 100644
index fc1cdcb..0000000
--- a/docs/type_system/tuple.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Tuple
-
----
-
-A sequence of different types accessed by index or a symbol mapped to an index
-
-```text
-Tuple[TYPE; TYPE.SYMBOL; ...]
-```
-
-# Operators
-
-## ``get`
-
-## ``set`
-
-```text
-Result[Void] : target `set (KEY; VALUE)
-
-items : Tuple(1; 2; 3)
-items `set (0; 4)
-`log items // Tuple[I64; I64; I64] $ (4; 2; 3)
-```
-
-# Mutating