(
self,
func: Callable,
args: tuple[Any, ...] = (),
shortcut: bool | None = None,
**kwargs: Any,
)
| 783 | return unstacked # type: ignore[return-value] |
| 784 | |
| 785 | def map( |
| 786 | self, |
| 787 | func: Callable, |
| 788 | args: tuple[Any, ...] = (), |
| 789 | shortcut: bool | None = None, |
| 790 | **kwargs: Any, |
| 791 | ) -> T_Xarray: |
| 792 | raise NotImplementedError() |
| 793 | |
| 794 | def reduce( |
| 795 | self, |
no outgoing calls
no test coverage detected