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

Function islong_long

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

Source from the content-addressed store, hash-verified

149
150
151def islong_long(var):
152 if not isscalar(var):
153 return 0
154 if var.get('typespec') not in ['integer', 'logical']:
155 return 0
156 return get_kind(var) == '8'
157
158
159def isunsigned_char(var):

Callers 1

islong_longfunctionFunction · 0.85

Calls 3

get_kindFunction · 0.85
isscalarFunction · 0.70
getMethod · 0.45

Tested by

no test coverage detected