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

◆ anysmaller()

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

true if ony of A is smaller than corresponding B

Definition at line 174 of file rawarfun.h.

175  {
176  return (((*A) < (*B))
177  || Inline2<T1, T2, I-1>::anysmaller(&(A[1]), &(B[1])));
178  }
static bool anysmaller(const T1 *A, const T2 *B)
true if ony of A is smaller than corresponding B
Definition: rawarfun.h:174