Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/georgesboris/mumu

Gleam package for using the non-cryptographic hash Murmur3
https://github.com/georgesboris/mumu

Last synced: about 2 months ago
JSON representation

Gleam package for using the non-cryptographic hash Murmur3

Awesome Lists containing this project

README

        

# mumu

[![Package Version](https://img.shields.io/hexpm/v/mumu)](https://hex.pm/packages/mumu)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/mumu/)

Hash strings using the non-cryptographic hash Murmur3 in Gleam.

```sh
gleam add mumu
```
```gleam
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 .