| Class | Description |
|---|---|
| HashDeltas |
A block representing a sorted sequence of 32-bit integers:
- the initial value [int32]
- zero or more deltas from the previous value [VLQs]
|
| HashDeltas.IndexRange | |
| HashDeltas.Writer | |
| HashMap |
The underlying encode/decode logic for DurableMap.
|
| HashMapEntries |
A block that represents zero or more key/value pairs in a HashMap.
|
| List |
An indexed list, encoded as:
- the number of elements [VLQ]
- number of SkipTable tiers [uint8]
- a SkipTable over the blocks of elements (unless number of tiers is 0)
- zero or more ENCODED blocks generated by
IDurableEncoding.List#elementEncoding() |
| SkipTable |
A sorted map of uint64 onto uint64, which assumes that the keys are unique and in sorted order
|
| SkipTable.Entry | |
| SkipTable.Writer | |
| SortedMap | |
| TempStream |