approx.approx - multiple declarations
Function approx.approx
Apply method on scalar
bool approx(T, Args...)
(
in T a,
in T b,
Args args
)
if (isFloatingPoint!T);
Function approx.approx
Apply method check on vectors
Function approx.approx
Apply method check on arrays
bool approx(T, Args...)
(
in T[] arr1,
in T[] arr2,
Args args
)
if (isFloatingPoint!T);
Function approx.approx
Apply method check on matrices
bool approx(T, size_t R, size_t C, Args...)
(
in T[C][R] m1,
in T[C][R] m2,
Args args
)
if (isFloatingPoint!T);