Keyed Collections have discrete keys tied to each value.
When iterating Collection.Keyed, each iteration will yield a [K, V] tuple, in other words, Collection#entries is the default iterator for Keyed Collections.
Collection.Keyed
[K, V]
Collection#entries
Generated using TypeDoc
Keyed Collections have discrete keys tied to each value.
When iterating
Collection.Keyed
, each iteration will yield a[K, V]
tuple, in other words,Collection#entries
is the default iterator for Keyed Collections.