summaryrefslogtreecommitdiff
path: root/docs/type_system/buffer.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-11 17:05:10 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-11 17:05:10 -0400
commitd3a576f02b5d02245ce98741ffa6440ba5179cfb (patch)
tree86031e3cc117daf9bb2770377d7c75f30044501b /docs/type_system/buffer.md
parent6cf3ace5c115ad065de248936f41eda7965fa7a9 (diff)
reduce number of types
Diffstat (limited to 'docs/type_system/buffer.md')
-rw-r--r--docs/type_system/buffer.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/type_system/buffer.md b/docs/type_system/buffer.md
index 5333cee..ae0c56b 100644
--- a/docs/type_system/buffer.md
+++ b/docs/type_system/buffer.md
@@ -2,16 +2,18 @@
---
-An sequence of bytes with unknown size and an encoding
+An sequence of bytes with unknown size and a byte representation
```text
-Buffer_encoding : Enum[.byte; .utf8; .utf16; .utf32]
+Buffer_repesentation: Enum[.type; .utf8; .utf16; .utf32]
-Buffer[Buffer_encoding]
+Buffer[TYPE; Buffer_repesentation]
```
## Alias
-```
-String `alias Buffer[.utf8]
+```text
+String `alias Buffer[Void; .utf8]
+
+Vector[Any] `alias Buffer[Any; .type]
```