| 256 | return _npy_clip<npy::cfloat_tag>(args, dimensions, steps); |
| 257 | } |
| 258 | NPY_NO_EXPORT void |
| 259 | CDOUBLE_clip(char **args, npy_intp const *dimensions, npy_intp const *steps, |
| 260 | void *NPY_UNUSED(func)) |
| 261 | { |
| 262 | return _npy_clip<npy::cdouble_tag>(args, dimensions, steps); |
| 263 | } |
| 264 | NPY_NO_EXPORT void |
| 265 | CLONGDOUBLE_clip(char **args, npy_intp const *dimensions, |
| 266 | npy_intp const *steps, void *NPY_UNUSED(func)) |
nothing calls this directly
no outgoing calls
no test coverage detected