| 961 | } |
| 962 | |
| 963 | size_t string::hash() const |
| 964 | { |
| 965 | if (empty()) { |
| 966 | return 0; |
| 967 | } |
| 968 | return (size_t) acl_hash_crc32(c_str(), size()); |
| 969 | } |
| 970 | |
| 971 | bool string::equal(const string& s, bool case_sensitive /* = true */) const |
| 972 | { |
no test coverage detected