pub type TimestampedEquipartition<F, const N: usize> = BTreeMap<(u32, u32), TimestampedValues<F, N>>;
Expand description
An equipartition of memory, with timestamps and values.
The key is a pair (address_space, label)
, where label
is the index of the block in the
partition. I.e., the starting address of the block is (address_space, label * N)
.
If a key is not present in the map, then the block is uninitialized (and therefore zero).
Aliased Typeยง
struct TimestampedEquipartition<F, const N: usize> { /* private fields */ }