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

Function s_intp_abs

numpy/core/src/multiarray/shape.c:790–794  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

788}
789
790static inline npy_intp
791s_intp_abs(npy_intp x)
792{
793 return (x < 0) ? -x : x;
794}
795
796
797

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected