Create a new empty map.
()
| 44 | { |
| 45 | /// Create a new empty map. |
| 46 | pub fn new() -> Self |
| 47 | where |
| 48 | V: Default, |
| 49 | { |
| 50 | Self { |
| 51 | elems: Vec::new(), |
| 52 | default: Default::default(), |
| 53 | unused: PhantomData, |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | /// Create a new, empty map with the specified capacity. |
| 58 | /// |