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

◆ operator()()

template<class C >
void aff::func::util::Extractabsmax< C >::operator() ( const Tvalue v)
inline

collect another value

Definition at line 70 of file absmax.h.

References aff::func::util::Extractabsmax< C >::Mval.

71  {
72  Tvalue av = v < 0 ? -v : v;
73  Mval = Mval > av ? Mval : av;
74  }