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

◆ anysmaller()

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

true if ony of A is smaller than corresponding B

Definition at line 92 of file rawarfun.h.

Referenced by aff::inline_anysmaller().

93  {
94  return (((*A) < (*B))
95  || Inline<T,I-1>::anysmaller(&(A[1]), &(B[1])));
96  }
static bool anysmaller(const T *A, const T *B)
true if ony of A is smaller than corresponding B
Definition: rawarfun.h:92
Here is the caller graph for this function: