Available overloads

The following variants of SciPy’s special functions can be used inside Numba jitted code. Arguments are specified by their Numba types except for the C long type, where an equivalent Numba type does not exist. To determine what Numba integer type long is on your system, run:

>>> import ctypes
>>> 8 * ctypes.sizeof(ctypes.c_long)

Common values are int32 and int64.