(
self,
func: Callable[..., Any],
dim: Dims = None,
*,
axis: int | Sequence[int] | None = None,
keepdims: bool = False,
**kwargs: Any,
)
| 15 | __slots__ = () |
| 16 | |
| 17 | def reduce( |
| 18 | self, |
| 19 | func: Callable[..., Any], |
| 20 | dim: Dims = None, |
| 21 | *, |
| 22 | axis: int | Sequence[int] | None = None, |
| 23 | keepdims: bool = False, |
| 24 | **kwargs: Any, |
| 25 | ) -> Self: |
| 26 | raise NotImplementedError() |
| 27 | |
| 28 | def count( |
| 29 | self, |