PyLong_Frexp method

double PyLong_Frexp(
  1. Pointer<PyLongObject> a,
  2. Pointer<Py_ssize_t> e
)

Implementation

double PyLong_Frexp(
  ffi.Pointer<PyLongObject> a,
  ffi.Pointer<Py_ssize_t> e,
) {
  return _PyLong_Frexp(
    a,
    e,
  );
}