PyOS_string_to_double method Null safety

double PyOS_string_to_double (
  1. Pointer<Int8> str,
  2. Pointer<Pointer<Int8>> endptr,
  3. Pointer<PyObject> overflow_exception
)

Implementation

double PyOS_string_to_double(
  ffi.Pointer<ffi.Int8> str,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> endptr,
  ffi.Pointer<PyObject> overflow_exception,
) {
  return _PyOS_string_to_double(
    str,
    endptr,
    overflow_exception,
  );
}