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