mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-18 17:15:05 +00:00
13 lines
177 B
Rust
13 lines
177 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() {}
|