| 157 | bool operator>(pure_slice s) const noexcept FLPURE {return compare(s) > 0;} |
| 158 | bool operator<=(pure_slice s) const noexcept FLPURE {return compare(s) <= 0;} |
| 159 | bool operator>=(pure_slice s) const noexcept FLPURE {return compare(s) >= 0;} |
| 160 | |
| 161 | inline bool hasPrefix(pure_slice) const noexcept FLPURE; |
| 162 | inline bool hasSuffix(pure_slice) const noexcept FLPURE; |
nothing calls this directly
no outgoing calls
no test coverage detected