Local row pointers.
(self)
| 256 | |
| 257 | @property |
| 258 | def indptr(self) -> npt.NDArray[np.int64]: |
| 259 | """Local row pointers.""" |
| 260 | return self._cpp_object.indptr |
| 261 | |
| 262 | def to_dense(self) -> npt.NDArray[Scalar]: |
| 263 | """Copy to a dense 2D array. |
nothing calls this directly
no outgoing calls
no test coverage detected