Internal storage for the TwoKeyMap, which is just a Map of Maps.
Clears all entries from the TwoKeyMap.
Similar to JavaScript's Map.prototype.forEach
, but with slightly different arguments.
Gets the value associated with [k1, k2]
.
Creates a relationship between [k1, k2]
and v
, overwriting if one already exists.
Generated using TypeDoc
A Map with two keys as opposed to one. Order does matter, so
map.get(k1, k2) !== map.get(k2, k1)
for example.