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