fn hash_array<T>(
array: T,
random_state: &RandomState,
hashes_buffer: &mut [u64],
rehash: bool,
)where
T: ArrayAccessor,
T::Item: HashValue,Expand description
Hashes one array into the hashes_buffer
If rehash==true this combines the previous hash value in the buffer
with the new hash using combine_hashes