### Murmur Hashing Examples (x86_32, x86_128, x64_128) Source: https://github.com/preciz/murmur/blob/main/README.md Demonstrates how to use the Murmur library to hash data using its different variants: x86_32bit, x86_128bit, and x64_128bit. Examples include hashing strings and Erlang terms. ```Elixir iex> Murmur.hash_x86_32("b2622f5e1310a0aa14b7f957fe4246fa", 2147368987) 3297211900 ``` ```Elixir iex> Murmur.hash_x86_128("some random data") 5586633072055552000169173700229798482 ``` ```Elixir # hashes of Erlang terms may change between Erlang versions iex> Murmur.hash_x64_128([:yes, :you, :can, :use, :any, :erlang, :term!]) 300414073828138369336317731503972665325 ``` -------------------------------- ### Add Murmur Dependency to mix.exs Source: https://github.com/preciz/murmur/blob/main/README.md This snippet shows how to add the Murmur library as a project dependency in your Elixir `mix.exs` file. Ensure you are using a compatible version of the library. ```Elixir def deps do [{:murmur, "~> 2.0"}] end ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.