hypot method

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

Implementation

double hypot(
  double _X,
  double _Y,
) {
  return (_hypot_1 ??= _dylib.lookupFunction<_c_hypot, _dart_hypot>('hypot'))(
    _X,
    _Y,
  );
}