(x, decimals=0)
| 2024 | |
| 2025 | @derived_from(np) |
| 2026 | def around(x, decimals=0): |
| 2027 | return map_blocks(partial(np.around, decimals=decimals), x, dtype=x.dtype) |
| 2028 | |
| 2029 | |
| 2030 | def _asarray_isnull(values): |
nothing calls this directly
no test coverage detected