nu_max

Gets the largest value between a and b

ref @nogc nothrow @trusted pure
T
nu_max
(
T
)
(
auto ref T a
,
auto ref T b
)
if (
is(typeof(
()
=> T.init > T.init
))
)

Parameters

a T

The first parameter

b T

The second parameter

Return Value

Type: T

The largest value of the 2 given.

Meta