erg_common 0.6.18-nightly.0

A common components library of Erg
Documentation
use std::collections::hash_map::RandomState;
use std::hash::{BuildHasher, Hasher};

pub fn random() -> u64 {
    let state = RandomState::new();
    state.build_hasher().finish()
}