Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/georgesboris/mumu
- Owner: georgesboris
- License: mit
- Created: 2024-04-26T11:44:06.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T13:57:36.000Z (8 months ago)
- Last Synced: 2024-09-18T14:10:51.620Z (4 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 mumumumu.hash("some-data")
// -> 875_689_107mumu.hash_with_seed("some-data", 1)
// -> 3_388_568_194
```Further documentation can be found at .