frexp method

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

Implementation

double frexp(
  double _X,
  ffi.Pointer<ffi.Int32> _Y,
) {
  return (_frexp ??= _dylib.lookupFunction<_c_frexp, _dart_frexp>('frexp'))(
    _X,
    _Y,
  );
}