| 162 | inline bool hasSuffix(pure_slice) const noexcept FLPURE; |
| 163 | bool hasPrefix(uint8_t b) const noexcept FLPURE {return size > 0 && (*this)[0] == b;} |
| 164 | bool hasSuffix(uint8_t b) const noexcept FLPURE {return size > 0 && (*this)[size-1] == b;} |
| 165 | |
| 166 | /** Computes a 32-bit non-cryptographic hash of the slice's contents. */ |
| 167 | uint32_t hash() const noexcept FLPURE {return FLSlice_Hash(*this);} |
nothing calls this directly
no outgoing calls
no test coverage detected