mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 14:38:46 +00:00
13 lines
No EOL
177 B
Rust
13 lines
No EOL
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() {} |