Function max3

Find maximum of three values

T max3(T) (
  T x,
  T y,
  T z
) nothrow;

Example

assert(max3(3, 2, 1) == 3);