frexp method

double frexp(
  1. double _X,
  2. Pointer<Int> _Y
)

Implementation

double frexp(
  double _X,
  ffi.Pointer<ffi.Int> _Y,
) {
  return _frexp(
    _X,
    _Y,
  );
}