mumu
Hash strings using the non-cryptographic hash Murmur3 in Gleam.
gleam add mumu
import mumu
mumu.hash("some-data")
// -> 875_689_107
mumu.hash_with_seed("some-data", 1)
// -> 3_388_568_194
Further documentation can be found at https://hexdocs.pm/mumu.