Get the length of string in Ch in the string buffer.
| 83 | |
| 84 | //! Get the length of string in Ch in the string buffer. |
| 85 | size_t GetLength() const { return stack_.GetSize() / sizeof(Ch); } |
| 86 | |
| 87 | static const size_t kDefaultCapacity = 256; |
| 88 | mutable internal::Stack<Allocator> stack_; |