PyOS_string_to_double method

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

Implementation

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