Returns the number of assigned identifiers.
(&self)
| 82 | |
| 83 | /// Returns the number of assigned identifiers. |
| 84 | pub(super) fn len(&self) -> usize { |
| 85 | self.map.len() |
| 86 | } |
| 87 | |
| 88 | /// Iterates over all entries, yielding `(key, value, id)` tuples in arbitrary order. |
| 89 | pub(super) fn iter(&self) -> impl Iterator<Item = (&K, &V, I)> + '_ { |
no outgoing calls
no test coverage detected