diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-03 15:26:26 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-03 15:26:26 -0400 |
| commit | f3e3fd0cdba8d2f9f49be279ac3c0ec87a44609b (patch) | |
| tree | a993e1539cf90362141db8a4c43f1f9f3ff7ef42 /docs/type_system/shared.md | |
| parent | b26ad08b39b8229dcea0bafc4a8ba4b0d7ad7154 (diff) | |
refs with more impl
Diffstat (limited to 'docs/type_system/shared.md')
| -rw-r--r-- | docs/type_system/shared.md | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/type_system/shared.md b/docs/type_system/shared.md index 84366ab..82a70d7 100644 --- a/docs/type_system/shared.md +++ b/docs/type_system/shared.md @@ -12,10 +12,6 @@ Shared[TYPE] // Resolves to Shared[.unknown; TYPE] # Garbage Collection Method -```text -Shared[TYPE] -``` - ## Unknown Counting or tracing will determined later on @@ -27,9 +23,9 @@ Counting or tracing will determined later on # Mutating ```text -x : Shared[Vector] $ (1; 2; 3) +x : Shared[Array] $ (1; 2; 3) ^ x {[y] y `push 4 } -`log x // Shared[.counting; Vector[I64]] $ (1; 2; 3; 4) +`log x // Shared[.counting; Array[I64]] $ (1; 2; 3; 4) ``` |
