r"""Remove all selfloops from the graph.
(self)
| 338 | self._clear_cache() |
| 339 | |
| 340 | def remove_selfloop(self): |
| 341 | r"""Remove all selfloops from the graph.""" |
| 342 | self._raw_selfloop_dict.clear() |
| 343 | self.remove_extra_selfloop() |
| 344 | self._clear_cache() |
| 345 | |
| 346 | def nbr_v(self, v_idx: int) -> Tuple[List[int], List[float]]: |
| 347 | r"""Return a vertex list of the neighbors of the vertex ``v_idx``. |
nothing calls this directly
no test coverage detected