| 92 | /// A container keeping items indexed by NodeIndex. |
| 93 | #[derive(Clone, Eq, PartialEq, Hash, Debug, Default, Decode, Encode, From)] |
| 94 | pub struct NodeMap<T>(Vec<Option<T>>); |
| 95 | |
| 96 | impl<T> NodeMap<T> { |
| 97 | /// Constructs a new node map with a given length. |
no outgoing calls
no test coverage detected