(x: usize)
| 18 | unsafe impl petgraph::matrix_graph::IndexType for NodeIdxToken { |
| 19 | #[inline(always)] |
| 20 | fn new(x: usize) -> Self { |
| 21 | NodeIdxToken(x as u32) |
| 22 | } |
| 23 | #[inline(always)] |
| 24 | fn index(&self) -> usize { |
| 25 | self.0 as usize |
nothing calls this directly
no test coverage detected