Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
790
static inline npy_intp
791
s_intp_abs(npy_intp x)
792
{
793
return (x < 0) ? -x : x;
794
}
795
796
797
Callers
1
PyArray_CreateMultiSortedStridePerm
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected