Static Public Member Functions

gmtl::meta::EqualVecUnrolled< ELT, VT > Struct Template Reference

meta class to test vector equality. More...

#include <VecOpsMeta.h>

List of all members.

Static Public Member Functions

static bool func (const VT &v1, const VT &v2)

Detailed Description

template<int ELT, typename VT>
struct gmtl::meta::EqualVecUnrolled< ELT, VT >

meta class to test vector equality.

Definition at line 54 of file VecOpsMeta.h.


Member Function Documentation

template<int ELT, typename VT >
static bool gmtl::meta::EqualVecUnrolled< ELT, VT >::func ( const VT &  v1,
const VT &  v2 
) [inline, static]

Definition at line 56 of file VecOpsMeta.h.

   {  return (v1[ELT]==v2[ELT]) && EqualVecUnrolled<ELT-1,VT>::func(v1,v2); }


The documentation for this struct was generated from the following file: