Get the size of string in bytes in the string buffer.
| 80 | |
| 81 | //! Get the size of string in bytes in the string buffer. |
| 82 | size_t GetSize() const { return stack_.GetSize(); } |
| 83 | |
| 84 | //! Get the length of string in Ch in the string buffer. |
| 85 | size_t GetLength() const { return stack_.GetSize() / sizeof(Ch); } |