andrew-johnson-4 / lambda-mountain

Typed Macro Assembler (x86, HTML, WASM, lots of things)
https://andrew-johnson-4.github.io/lambda-mountain/
MIT License
17 stars 0 forks source link

Fields / Arrays / Indexes #401

Open andrew-johnson-4 opened 4 months ago

andrew-johnson-4 commented 4 months ago

A Field is a contiguous region of similar data types, possibly with a known size. An Array is a pointer to a Field. An Index is either a Field OR an Array.

Field<U64,3>
Array<U64,3>
Index<U64,3> = U64[3]