Returns the memory usage of this [`ArrayMap`] in bytes.
(&self)
| 232 | |
| 233 | /// Returns the memory usage of this [`ArrayMap`] in bytes. |
| 234 | pub fn size(&self) -> usize { |
| 235 | self.data.capacity() * size_of::<u32>() + self.next.capacity() * size_of::<u32>() |
| 236 | } |
| 237 | |
| 238 | pub fn get_matched_indices_with_limit_offset( |
| 239 | &self, |
no test coverage detected