stefans_utils/
hash_map.rs

1use std::collections::HashMap;
2
3use crate::with_len::WithLen;
4
5impl<K, V> WithLen for HashMap<K, V> {
6    fn len(&self) -> usize {
7        HashMap::len(self)
8    }
9}