(self)
| 3730 | |
| 3731 | @functools.cached_property |
| 3732 | def _meta(self): |
| 3733 | if self.operand("meta") is not no_default: |
| 3734 | return self.operand("meta") |
| 3735 | return _get_meta_ufunc(self._dfs, self.args, self.func) |
| 3736 | |
| 3737 | def _lower(self): |
| 3738 | args = maybe_align_partitions(*self.args, divisions=self._divisions()) |
nothing calls this directly
no test coverage detected