PyFloat_Pack4 method

int PyFloat_Pack4(
  1. double x,
  2. Pointer<Char> p,
  3. int le
)

Implementation

int PyFloat_Pack4(
  double x,
  ffi.Pointer<ffi.Char> p,
  int le,
) {
  return _PyFloat_Pack4(
    x,
    p,
    le,
  );
}