(&self, id: VertexId)
| 252 | /// Get a span by ID, returning None if out of bounds. |
| 253 | #[inline] |
| 254 | pub fn try_get_vertex(&self, id: VertexId) -> Option<&AliveVertex> { |
| 255 | self.vertices.get(id.index()) |
| 256 | } |
| 257 | |
| 258 | /// Get a mutable span by ID, returning None if out of bounds. |
| 259 | #[inline] |
no test coverage detected