| 117 | |
| 118 | |
| 119 | uint32_t |
| 120 | HashBsonComparable(bson_iter_t *bsonIterValue, uint32_t seed) |
| 121 | { |
| 122 | const char *collationString = NULL; |
| 123 | return (uint32_t) BsonHashCompare(bsonIterValue, |
| 124 | HashBytesUint32AsUint64, |
| 125 | HashCombineUint32AsUint64, seed, collationString); |
| 126 | } |
| 127 | |
| 128 | |
| 129 | uint64 |
no test coverage detected