String representation of the adjacency list.
(self)
| 69 | self._cpp_object = g |
| 70 | |
| 71 | def __repr__(self): |
| 72 | """String representation of the adjacency list.""" |
| 73 | return self._cpp_object.__repr__() |
| 74 | |
| 75 | def links(self, node: int) -> npt.NDArray[Index]: |
| 76 | """Retrieve the links of a node. |
nothing calls this directly
no outgoing calls
no test coverage detected