| 1652:db8299984bfe | 1653:6a842bd49fea |
|---|---|
| 168 d = cx_vcmp_size(left->len, right->len); | 168 d = cx_vcmp_size(left->len, right->len); |
| 169 if (d != 0) return d; | 169 if (d != 0) return d; |
| 170 if (left->len == 0) return 0; | 170 if (left->len == 0) return 0; |
| 171 return memcmp(left->data, right->data, left->len); | 171 return memcmp(left->data, right->data, left->len); |
| 172 } | 172 } |
| 173 | |
| 174 cxstring cx_hash_key_as_string(const CxHashKey *key) { | |
| 175 return cx_strn(key->data, key->len); | |
| 176 } |