pub type MonotonicMap<'a, T> = Map<u64, T>;
A Map where the key monotonically increases.
This represents a common pattern where we want to store data with unique keys The u64 key is guaranteed to monotonically increase over time per pushed value.
pub struct MonotonicMap<'a, T> { /* private fields */ }