Returns the number of elements in the map.
(&self)
| 82 | |
| 83 | /// Returns the number of elements in the map. |
| 84 | pub fn len(&self) -> usize { |
| 85 | self.dense.len() |
| 86 | } |
| 87 | |
| 88 | /// Returns true is the map contains no elements. |
| 89 | pub fn is_empty(&self) -> bool { |