This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-08 16:07:43 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4b23f403e5
rust
/
compiler
/
rustc_data_structures
/
src
/
sso
/
mod.rs
7 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
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 19:28:26 +00:00
mod
either_iter
;
MiniSet/MiniMap moved and renamed into SsoHashSet/SsoHashMap It is a more descriptive name and with upcoming changes there will be nothing "mini" about them.
2020-09-24 04:32:11 +00:00
mod
map
;
mod
set
;
pub
use
map
::
SsoHashMap
;
pub
use
set
::
SsoHashSet
;
Reference in New Issue
Copy Permalink