Returns true iff this is an empty string (i.e. "").
| 3089 | |
| 3090 | // Returns true iff this is an empty string (i.e. ""). |
| 3091 | bool empty() const { return (c_str() != NULL) && (length() == 0); } |
| 3092 | |
| 3093 | // Compares this with another String. |
| 3094 | // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 |