(self, other)
| 2500 | |
| 2501 | @check_if_handled_given_other |
| 2502 | def __rdivmod__(self, other): |
| 2503 | from dask.array.ufunc import divmod |
| 2504 | |
| 2505 | return divmod(other, self) |
| 2506 | |
| 2507 | def any(self, axis=None, keepdims=False, split_every=None, out=None): |
| 2508 | """Returns True if any of the elements evaluate to True. |