Update README with Sparse info.

This commit is contained in:
yukirij 2023-08-23 17:24:15 -07:00
parent 21b95b936c
commit 7f49567022

View File

@ -36,8 +36,9 @@ While the runtime provides methods for directly acquring and releasing memory, i
|Significant|x13|--|Fixed-precision, variable-magnitude numbers|
|Block|x1e|size|Constant-sized series of bytes|
|Sequence|x1f|--|Variable-sized series of bytes|
|Array|x22|size, type|Constant-sized, ordered collection|
|List|x23|type|Variable-sized, ordered collection|
|Array|x22|size, type|Constant-sized, indexed collection|
|List|x23|type|Variable-sized, indexed collection|
|Sparse|x24|type|Variable-sized, discontinuously indexed collection|
|Record|x7e|schema|Instance of a schema|
|Schema|x7f|--|Definition of abstract structure|
@ -53,6 +54,7 @@ Type building functions are used to generate identifiers used in the constructio
* `sequence()`
* `array(size, type)`
* `list(type)`
* `sparse(type)`
* `record(schema)`
* `schema()`