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

◆ anylarger()

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

true if ony of A is larger than corresponding B

Definition at line 180 of file rawarfun.h.

Referenced by aff::inline_anylarger().

181  {
182  return (((*A) > (*B))
183  || Inline2<T1, T2,I-1>::anylarger(&(A[1]), &(B[1])));
184  }
static bool anylarger(const T1 *A, const T2 *B)
true if ony of A is larger than corresponding B
Definition: rawarfun.h:180
Here is the caller graph for this function: