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

◆ anylarger()

template<typename T , int I>
static bool aff::util::Inline< T, I >::anylarger ( const T *  A,
const T *  B 
)
inlinestatic

true if ony of A is larger than corresponding B

Definition at line 98 of file rawarfun.h.

Referenced by aff::inline_anylarger().

99  {
100  return (((*A) > (*B))
101  || Inline<T,I-1>::anylarger(&(A[1]), &(B[1])));
102  }
static bool anylarger(const T *A, const T *B)
true if ony of A is larger than corresponding B
Definition: rawarfun.h:98
Here is the caller graph for this function: