max method

A max(
  1. A a1,
  2. A a2
)

Implementation

A max(A a1, A a2) => gte(a1, a2) ? a1 : a2;