hypot function

VARP hypot(
  1. VARP x,
  2. VARP y
)

Implementation

VARP hypot(VARP x, VARP y) => F.sqrt(x * x + y * y);