Exemplo n.º 1
0
bool operator&&(const VString &string, const unsigned int bl){ return string.is() && bl; }
Exemplo n.º 2
0
bool operator&&(const bool bl, const VString &stringt){ return bl && stringt.is(); }
Exemplo n.º 3
0
bool operator&&(const VString &string, const bool bl){ return string.is() && bl; }
Exemplo n.º 4
0
bool operator&&(const VString &string, const VString &stringt){ return string.is() && stringt.is(); }