Files Classes Functions Hierarchy
#include <sequencesequal.h>
Public Member Functions | |
| boolc | eval (INDX const *va, INDX const *vb) const |
Definition at line 18 of file sequencesequal.h.
| boolc sequencesequal3helper< INDX, I0, I1, I2 >::eval | ( | INDX const * | va, | |
| INDX const * | vb | |||
| ) | const [inline] |
Definition at line 28 of file sequencesequal.h.
00032 { 00033 if (va[I0]==vb[I0]) 00034 { 00035 if (va[I1]==vb[I1]) 00036 { 00037 if (va[I2]==vb[I2]) 00038 return true; 00039 00040 return false; 00041 } 00042 00043 if (va[I1]==vb[I2]) 00044 { 00045 if (va[I2]==vb[I1]) 00046 return true; 00047 00048 return false; 00049 } 00050 00051 return false; 00052 } 00053 00054 return false; 00055 }
1.5.8