(seed: u64)
| 204 | #[cfg(not(feature = "force_hash_collisions"))] |
| 205 | #[inline] |
| 206 | fn seeded_state(seed: u64) -> foldhash::fast::SeedableRandomState { |
| 207 | foldhash::fast::SeedableRandomState::with_seed( |
| 208 | seed, |
| 209 | foldhash::SharedSeed::global_fixed(), |
| 210 | ) |
| 211 | } |
| 212 | |
| 213 | /// Builds hash values of PrimitiveArray and writes them into `hashes_buffer` |
| 214 | /// If `rehash==true` this folds the existing hash into the hasher state |
no outgoing calls
no test coverage detected
searching dependent graphs…