()
| 60 | #[inline] |
| 61 | #[must_use] |
| 62 | pub const fn new() -> Self { |
| 63 | Self { |
| 64 | sparse: SecondaryMap::new(), |
| 65 | dense: vec![], |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /// Create a new map large enough to hold entity references with an index |
| 70 | /// below `max_index`. |
nothing calls this directly
no outgoing calls
no test coverage detected