MCPcopy Index your code
hub / github.com/numpy/numpy / isunsigned

Function isunsigned

numpy/f2py/auxfuncs.py:172–177  ·  view source on GitHub ↗
(var)

Source from the content-addressed store, hash-verified

170
171
172def isunsigned(var):
173 if not isscalar(var):
174 return 0
175 if var.get('typespec') != 'integer':
176 return 0
177 return get_kind(var) == '-4'
178
179
180def isunsigned_long_long(var):

Callers

nothing calls this directly

Calls 3

get_kindFunction · 0.85
isscalarFunction · 0.70
getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…