38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
14 lines
179 B
Rust
14 lines
179 B
Rust
#[derive(Clone)]
|
|
pub struct HashMap<V, S> {
|
|
hash_builder: S,
|
|
table: RawTable<V>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct RawTable<V> {
|
|
size: usize,
|
|
val: V,
|
|
}
|
|
|
|
fn main() {}
|