(&mut self, id: VertexId)
| 246 | /// Panics if the ID is out of bounds. |
| 247 | #[inline] |
| 248 | pub fn vertex_mut(&mut self, id: VertexId) -> &mut AliveVertex { |
| 249 | &mut self.vertices[id.index()] |
| 250 | } |
| 251 | |
| 252 | /// Get a span by ID, returning None if out of bounds. |
| 253 | #[inline] |