pub fn push_to_monotonic_multilevel_map<'a, K, T>(
store: &mut dyn Storage,
m: MonotonicMultilevelMap<'a, K, T>,
k: K,
t: &T,
) -> Result<u64>where
K: PrimaryKey<'a> + Prefixer<'a> + KeyDeserialize,
T: Serialize + DeserializeOwned,
Expand description
Push a new value to a MonotonicMultilevelMap.