Returns true if the string is stored by address. Returns false if the string is stored by copy.
| 44 | // Returns true if the string is stored by address. |
| 45 | // Returns false if the string is stored by copy. |
| 46 | bool isStatic() const { |
| 47 | return str_.isStatic(); |
| 48 | } |
| 49 | |
| 50 | // Returns length of the string. |
| 51 | size_t size() const { |