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

Function isdouble

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

Source from the content-addressed store, hash-verified

186
187
188def isdouble(var):
189 if not isscalar(var):
190 return 0
191 if not var.get('typespec') == 'real':
192 return 0
193 return get_kind(var) == '8'
194
195
196def islong_double(var):

Callers 1

get_parametersFunction · 0.85

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…