MCPcopy Create free account
hub / github.com/numpy/numpy / intp_abs

Function intp_abs

numpy/core/src/multiarray/nditer_constr.c:2271–2275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2269}
2270
2271static inline npy_intp
2272intp_abs(npy_intp x)
2273{
2274 return (x < 0) ? -x : x;
2275}
2276
2277static void
2278npyiter_find_best_axis_ordering(NpyIter *iter)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected