| 107 | |
| 108 | template <class Tag, class T> |
| 109 | T |
| 110 | _NPY_CLIP(T x, T min, T max) |
| 111 | { |
| 112 | return _NPY_MIN<Tag>(_NPY_MAX<Tag>((x), (min)), (max)); |
| 113 | } |
| 114 | |
| 115 | template <class Tag, class T = typename Tag::type> |
| 116 | static void |
nothing calls this directly
no outgoing calls
no test coverage detected