(self)
| 322 | super().__init__(cache_prefix=None) |
| 323 | |
| 324 | def as_array(self) -> "cudf.DataFrame": |
| 325 | return cudf.concat(self._data) |
| 326 | |
| 327 | def as_array_labels(self) -> np.ndarray: |
| 328 | return np.concatenate(self._labels) |
no outgoing calls
no test coverage detected