PyComplex_FromDoubles method

Pointer<PyObject> PyComplex_FromDoubles(
  1. double real,
  2. double imag
)

Implementation

ffi.Pointer<PyObject> PyComplex_FromDoubles(
  double real,
  double imag,
) {
  return _PyComplex_FromDoubles(
    real,
    imag,
  );
}