rust/compiler/rustc_data_structures/src/sso/mod.rs
Valerii Lashmanov 41942fac7d SsoHashSet reimplemented as a wrapper on top of SsoHashMap
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.
2020-09-26 18:42:26 -05:00

7 lines
86 B
Rust

mod either_iter;
mod map;
mod set;
pub use map::SsoHashMap;
pub use set::SsoHashSet;