hypotf method

double hypotf(
  1. double _X,
  2. double _Y
)

Implementation

double hypotf(
  double _X,
  double _Y,
) {
  return (_hypotf_1 ??=
      _dylib.lookupFunction<_c_hypotf, _dart_hypotf>('hypotf'))(
    _X,
    _Y,
  );
}