()
| 35 | #[inline] |
| 36 | #[must_use] |
| 37 | pub const fn new() -> Self { |
| 38 | Self { |
| 39 | elems: Vec::new(), |
| 40 | marker: PhantomData, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | /// Create a new empty map with the given capacity. |
| 45 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected