#include <SdlArs.h>
Static Public Member Functions | |
| bool | eq (const T &c1, const T &c2) |
| bool | lt (const T &c1, const T &c2) |
| int | compare (const T *s1, const T *s2, size_t n) |
| const T * | find (const T *s, size_t n, const T &c) |
|
||||||||||||||||||||
|
Definition at line 42 of file SdlArs.h. References IgnoreCaseTraits< T >::eq(), and IgnoreCaseTraits< T >::lt().
|
|
||||||||||||||||
|
Definition at line 40 of file SdlArs.h. Referenced by IgnoreCaseTraits< T >::compare(), and IgnoreCaseTraits< T >::find().
00040 { return towupper( c1 ) == towupper( c2 ); }
|
|
||||||||||||||||||||
|
Definition at line 50 of file SdlArs.h. References IgnoreCaseTraits< T >::eq().
00051 {
00052 for( size_t i = 0 ; i < n ; i++ )
00053 if( eq( s[i] , c ) )
00054 return &s[i];
00055 return 0;
00056 }
|
|
||||||||||||||||
|
Definition at line 41 of file SdlArs.h. Referenced by IgnoreCaseTraits< T >::compare().
00041 { return towupper( c1 ) < towupper( c2 ); }
|
1.3.3