FminFmax
FminFmax is a term used in computing to denote the pair of operations that compute the minimum and maximum of two values. In practice it usually refers to the floating-point variants of min and max provided by standard libraries, often called fmin and fmax, along with their float-specific forms such as fminf and fmaxf in C and C++.
The primary role of these functions is to return the smaller or larger of two inputs, respectively.
Language support and typical usage: In C and C++, the functions are available in the standard library
See also: Min function, Max function, IEEE 754 floating-point standard, NaN handling, Floating-point arithmetic.
---