| 67 | [[nodiscard]] StringEncoding getEncoding() const { return StringEncoding::Native; } |
| 68 | |
| 69 | [[nodiscard]] bool isEmpty() const { return path.view().isEmpty(); } |
| 70 | [[nodiscard]] bool append(StringSpan str) { return path.append(str); } |
| 71 | [[nodiscard]] bool assign(StringSpan str) { return path.assign(str); } |
| 72 |