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

◆ product()

template<typename T , int I>
static T aff::util::Inline< T, I >::product ( const T *  array)
inlinestatic

calculate product of all elements

Parameters
array$ A_l $
Returns
$ \prod\limits_{l=0}^{I-1}A_l $

Definition at line 73 of file rawarfun.h.

Referenced by aff::inline_product().

74  {
75  return(array[I-1]*Inline<T,I-1>::product(array));
76  }
static T product(const T *array)
calculate product of all elements
Definition: rawarfun.h:73
Here is the caller graph for this function: