PyOS_double_to_string method Null safety

Pointer<Int8> PyOS_double_to_string (
  1. double val,
  2. int format_code,
  3. int precision,
  4. int flags,
  5. Pointer<Int32> type
)

Implementation

ffi.Pointer<ffi.Int8> PyOS_double_to_string(
  double val,
  int format_code,
  int precision,
  int flags,
  ffi.Pointer<ffi.Int32> type,
) {
  return _PyOS_double_to_string(
    val,
    format_code,
    precision,
    flags,
    type,
  );
}