(x, condlist, funclist, *args, **kw)
| 2205 | |
| 2206 | @derived_from(np) |
| 2207 | def piecewise(x, condlist, funclist, *args, **kw): |
| 2208 | return map_blocks( |
| 2209 | _int_piecewise, |
| 2210 | x, |
| 2211 | *condlist, |
| 2212 | dtype=x.dtype, |
| 2213 | token="piecewise", |
| 2214 | funclist=funclist, |
| 2215 | func_args=args, |
| 2216 | func_kw=kw, |
| 2217 | ) |
| 2218 | |
| 2219 | |
| 2220 | def _select(*args, **kwargs): |
nothing calls this directly
no test coverage detected