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

https://github.com/zypeh/paddlefish

Some rust separate chain hashmap written in rust just to get myself familiar with rust before interview
https://github.com/zypeh/paddlefish

Last synced: 8 months ago
JSON representation

Some rust separate chain hashmap written in rust just to get myself familiar with rust before interview

Awesome Lists containing this project

README

          

### Paddlefish

Just a separate chaining hash map inspired by
[Boost.Unordered](https://www.boost.org/doc/libs/develop/libs/unordered/doc/html/unordered.html).

![](https://www.boost.org/doc/libs/develop/libs/unordered/doc/diagrams/fca.png)

> Instead of grouping buckets via doubly linked list, we are using Vec. I am
> still looking for alternatives here.

#### TODO

- Customised load factor & rehashing the keys
- Customised hasher as associated type
- Performance characteristics & benchmarks