| 27 | [[nodiscard]] bool operator==(StringSpan other) const { return view() == other; } |
| 28 | |
| 29 | void clear() |
| 30 | { |
| 31 | length = 0; |
| 32 | buffer[0] = 0; |
| 33 | } |
| 34 | [[nodiscard]] bool assign(StringSpan str) |
| 35 | { |
| 36 | clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected