nu_min

Gets the lowest value between a and b

ref @nogc nothrow @trusted pure
T
nu_min
(
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 lowest value of the 2 given.

Meta