|
1 | 1 |
|
2 |
| -### `[] : (Array<base-type,?>, U64) -> base-type` |
| 2 | +### `[] : (base-type[], U64) -> base-type` |
3 | 3 |
|
4 |
| -### `set[] : (Array<base-type,?>, U64, base-type) -> base-type` |
| 4 | +### `set[] : (base-type[], U64, base-type) -> base-type` |
5 | 5 |
|
6 |
| -### `+ : (Array<base-type,?>, U64) -> Array<base-type,?>` |
| 6 | +### `+ : (base-type[], U64) -> base-type[]` |
7 | 7 |
|
8 | 8 | Pointer arithmetic.
|
9 | 9 |
|
10 |
| -### `+ : (Array<base-type,?>, I64) -> Array<base-type,?>` |
| 10 | +### `+ : (base-type[], I64) -> base-type[]` |
11 | 11 |
|
12 | 12 | Pointer arithmetic.
|
13 | 13 |
|
14 |
| -### `== : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 14 | +### `== : (base-type[], base-type[]) -> Bool` |
15 | 15 |
|
16 | 16 | Pointers are have linear addresses.
|
17 | 17 |
|
18 |
| -### `!= : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 18 | +### `!= : (base-type[], base-type[]) -> Bool` |
19 | 19 |
|
20 | 20 | Pointers are have linear addresses.
|
21 | 21 |
|
22 |
| -### `< : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 22 | +### `< : (base-type[], base-type[]) -> Bool` |
23 | 23 |
|
24 | 24 | Pointers are have linear addresses.
|
25 | 25 |
|
26 |
| -### `<= : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 26 | +### `<= : (base-type[], base-type[]) -> Bool` |
27 | 27 |
|
28 | 28 | Pointers are have linear addresses.
|
29 | 29 |
|
30 |
| -### `> : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 30 | +### `> : (base-type[], base-type[]) -> Bool` |
31 | 31 |
|
32 | 32 | Pointers are have linear addresses.
|
33 | 33 |
|
34 |
| -### `>= : (Array<base-type,?>, Array<base-type,?>) -> Bool` |
| 34 | +### `>= : (base-type[], base-type[]) -> Bool` |
35 | 35 |
|
36 | 36 | Pointers are have linear addresses.
|
37 | 37 |
|
38 |
| -### `close : base-type -> Array<base-type,?>` |
| 38 | +### `close : base-type -> base-type[]` |
39 | 39 |
|
40 | 40 | `close` tries to seal a value into a new indirect memory region.
|
41 | 41 |
|
42 |
| -### `open : Array<base-type,?> -> base-type` |
| 42 | +### `open : base-type[] -> base-type` |
43 | 43 |
|
44 | 44 | `open` tries to open a value from an indirect memory region.
|
45 | 45 |
|
46 | 46 | ### `open : base-type -> base-type`
|
47 | 47 |
|
48 | 48 | If a value is already directly accessible, then `open` is a noop.
|
| 49 | + |
| 50 | +### `& : LocalVariable+base-type -> base-type[]` |
| 51 | + |
| 52 | +Local variables have logical addresses that can be referenced with `&`. |
| 53 | + |
| 54 | +### `& :GlobalVariable+base-type -> base-type[]` |
| 55 | + |
| 56 | +Global variables have logical addresses that can be referenced with `&`. |
0 commit comments