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

Function islong_double

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

Source from the content-addressed store, hash-verified

197
198
199def islong_double(var):
200 if not isscalar(var):
201 return 0
202 if not var.get('typespec') == 'real':
203 return 0
204 return get_kind(var) == '16'
205
206
207def islong_complex(var):

Callers 1

islong_doublefunctionFunction · 0.85

Calls 3

get_kindFunction · 0.85
isscalarFunction · 0.70
getMethod · 0.45

Tested by

no test coverage detected