| 238 | return _npy_clip<npy::float_tag>(args, dimensions, steps); |
| 239 | } |
| 240 | NPY_NO_EXPORT void |
| 241 | DOUBLE_clip(char **args, npy_intp const *dimensions, npy_intp const *steps, |
| 242 | void *NPY_UNUSED(func)) |
| 243 | { |
| 244 | return _npy_clip<npy::double_tag>(args, dimensions, steps); |
| 245 | } |
| 246 | NPY_NO_EXPORT void |
| 247 | LONGDOUBLE_clip(char **args, npy_intp const *dimensions, npy_intp const *steps, |
| 248 | void *NPY_UNUSED(func)) |
nothing calls this directly
no outgoing calls
no test coverage detected