An iterator that yields immutable references to all values of a given key. The order of the
values is always in the order that they were inserted.
An iterator that moves all values of a given key out of a multimap but preserves the underlying
capacity. The order of the values is always in the order that they were inserted.
An iterator that yields mutable references to all values of a given key. The order of the values
is always in the order that they were inserted.
An iterator that owns and yields all key-value pairs in a multimap by cloning the keys for their
possibly multiple values. This is unnecessarily expensive whenever
Iter
or
IterMut
would
suit as well. The order of the yielded items is always in the order that they were inserted.
An iterator that yields immutable references to all key-value pairs in a multimap. The order of
the yielded items is always in the order that they were inserted.
An iterator that yields mutable references to all key-value pairs in a multimap. The order of
the yielded items is always in the order that they were inserted.
An iterator that yields immutable references to all keys and their value iterators. The order of
the yielded items is always in the order the keys were first inserted.
An iterator that yields immutable references to all keys in the multimap. The order of the keys
is always in the order that they were first inserted.
A view into an occupied entry in the multimap.
A view into a vacant entry in the multimap.
An iterator that yields immutable references to all values of a multimap. The order of the
values is always in the order that they were inserted.
An iterator that yields mutable references to all values of a multimap. The order of the values
is always in the order that they were inserted.