(x, decimals=0)
| 2072 | |
| 2073 | @derived_from(np) |
| 2074 | def around(x, decimals=0): |
| 2075 | return map_blocks(partial(np.around, decimals=decimals), x, dtype=x.dtype) |
| 2076 | |
| 2077 | |
| 2078 | def _asarray_isnull(values): |
nothing calls this directly
no test coverage detected
searching dependent graphs…