Vault
4.1
|
#include "vtypes.h"
Go to the source code of this file.
Classes | |
class | VChar |
VChar is a simple wrapper for C char values. More... | |
Defines | |
#define | VCHAR_NULL_TERMINATOR '\0' |
Simple C char value for a null terminator of a string. | |
Functions | |
bool | operator== (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator== (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator== (char lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator!= (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator!= (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator!= (char lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator< (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator< (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator< (char lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator<= (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator<= (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator<= (char lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator>= (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator>= (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator>= (char lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator> (const VChar &lhs, const VChar &rhs) |
Compares lhs and rhs. | |
bool | operator> (const VChar &lhs, char rhs) |
Compares lhs and rhs. | |
bool | operator> (char lhs, const VChar &rhs) |
Compares lhs and rhs. |
Definition in file vchar.h.
#define VCHAR_NULL_TERMINATOR '\0' |
Simple C char value for a null terminator of a string.
Prefer VChar::NULL_CHAR() unless referencing plain char value.
bool operator== | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
bool operator== | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
Compares lhs and rhs.
Definition at line 176 of file vchar.h.
References operator==().
bool operator!= | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a VChar |
rhs | a char |
Definition at line 178 of file vchar.h.
References operator==().
bool operator!= | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a char |
rhs | a VChar |
Definition at line 179 of file vchar.h.
References operator==().
bool operator< | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
bool operator< | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
bool operator<= | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
bool operator<= | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
Compares lhs and rhs.
Definition at line 190 of file vchar.h.
References operator<().
bool operator>= | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a VChar |
rhs | a char |
Definition at line 191 of file vchar.h.
References operator<().
bool operator>= | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a char |
rhs | a VChar |
Definition at line 192 of file vchar.h.
References operator<().
Compares lhs and rhs.
Definition at line 194 of file vchar.h.
References operator<().
bool operator> | ( | const VChar & | lhs, |
char | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a VChar |
rhs | a char |
Definition at line 195 of file vchar.h.
References operator<().
bool operator> | ( | char | lhs, |
const VChar & | rhs | ||
) | [inline] |
Compares lhs and rhs.
lhs | a char |
rhs | a VChar |
Definition at line 196 of file vchar.h.
References operator<().