AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ min()

template<class C >
C::Tvalue aff::func::min ( const C &  c)

Function template to extract the smallest from the values stored in a container

Parameters
Cany container class like aff::Array<double> (this value is deduced by the compiler)
cany container of numerical values
Returns
smallest value of container contents
See also
aff::func::util::collect, aff::func::util::Extractmin

Definition at line 90 of file min.h.

Referenced by main().

91  {
92  return(aff::func::util::collect<C, aff::func::util::Extractmin>(c));
93  } // min()
Here is the caller graph for this function: