PyOS_double_to_string method Null safety
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,
);
}