mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-07 15:37:39 +00:00

SsoHashSet::replace had to be removed because it requires missing API from SsoHashMap. It's not a widely used function, so I think it's ok to omit it for now. EitherIter moved into its own file. Also sprinkled code with #[inline] attributes where appropriate.
7 lines
86 B
Rust
7 lines
86 B
Rust
mod either_iter;
|
|
mod map;
|
|
mod set;
|
|
|
|
pub use map::SsoHashMap;
|
|
pub use set::SsoHashSet;
|