(x)
| 331 | |
| 332 | @derived_from(np) |
| 333 | def modf(x): |
| 334 | # Not actually object dtype, just need to specify something |
| 335 | tmp = elemwise(np.modf, x, dtype=object) |
| 336 | left = DoubleOutputs(tmp, 0, getattr(x, "_meta", x), "modf1-", np.modf) |
| 337 | right = DoubleOutputs(tmp, 1, getattr(x, "_meta", x), "modf2-", np.modf) |
| 338 | return new_collection(left), new_collection(right) |
| 339 | |
| 340 | |
| 341 | @derived_from(np) |
nothing calls this directly
no test coverage detected
searching dependent graphs…