hash_table_datastruct 0.6.2

Adds a HashTable type, allowing to store values in a table with integer-indexed rows and hashable keys for columns
Documentation
1
2
3
4
5
6
7
8
9
10
# Hash Table (data structure)

This crate provides a 2d data structure where columns are indexed by hashable keys and rows are indexed using an unsigned integer (`usize`).

## Features
| Name              | Description                                                                               | Enabled by default? |
|-------------------|-------------------------------------------------------------------------------------------|---------------------|
| `hashbrown`       | Uses `hashbrown` instead of std hashmap                                                   | No                  |
| `serde`           | Serde trait implementations                                                               | Yes                 |
| `hashbrown-serde` | Enables `hashbrown`'s `serde` feature and `serde` and `hashbrown` features of this crate  | No                  |