PyOS_double_to_string method

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

Implementation

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