| 304 | String ToString() const; |
| 305 | void ToString(StringImpl& str) const; |
| 306 | void RemoveFromStart(intptr length) |
| 307 | { |
| 308 | BF_ASSERT((uintptr)length <= (uintptr)mLength); |
| 309 | mPtr += length; |
| 310 | mLength -= (int)length; |
| 311 | } |
| 312 | |
| 313 | void RemoveToEnd(intptr startIdx) |
| 314 | { |