Standard C++ Library Class Reference
Return true if c1 does not equal c2.
static
bool lt (const char_type& c1, const char_type& c2)
Return true if c1 is less than c2.
static
char_type eos ()
Return the end of string value for the the character type. Typically char_type().
static
int compare (const char_type* s1, const char_type* s2,
size_t n)
Compare n values from s1 with n values from s2. Return 1 if s1 is greater than s2, -1 if s1
is less than s2, or 0 if they are equal.
static
size_t length (const char_type * s)
Return the length of the null terminated character array s. The eos terminator is not
counted.
static
char_type* copy (char_type* s1, const char_type* s2, size_t n)
Copy n values from s1 to s2. The ranges of (s1,s1+n) and (s2,s2+n) may not overlap.
static
char_type* move (char_type* s1, const char_type* s2, size_t n)
Move n values from s1 to s2. The ranges of (s1,s1+n) and (s2,s2+n) may overlap.
static
const char_type* find (const char_type* s, int n,
const char_type& a)
Look for the value of a in s. Only n elements of s are examined. Returns a pointer to the
matched element if one is found. Otherwise returns s + n.
See Also
basic_string