hash_table_datastruct 0.6.3

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
11
12
13
14
15
//! Re-exports of `std` or `hashbrown` types for easier usage throughout the library

use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "hashbrown")] {
        pub use hashbrown::HashMap;
        pub use hashbrown::hash_map::Keys;
    } else {
        pub use std::collections::HashMap;
        pub use std::collections::hash_map::Keys;
    }
}

pub use std::hash::Hash;