| 273 | } |
| 274 | |
| 275 | LAZY_IMPORTER_FORCEINLINE constexpr unsigned |
| 276 | khash_impl(const char* str, unsigned value) noexcept |
| 277 | { |
| 278 | return (*str ? khash_impl(str + 1, hash_single(value, *str)) : value); |
| 279 | } |
| 280 | |
| 281 | LAZY_IMPORTER_FORCEINLINE constexpr offset_hash_pair khash( |
| 282 | const char* str, unsigned offset) noexcept |
no test coverage detected