This website requires JavaScript.
Explore
Help
Register
Sign In
rust-lang
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
dca1e7aa5a8ac05ddaea731f4eab20de91acb46b
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 14:28:26 -05: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-23 23:32:11 -05:00
mod
map
;
mod
set
;
pub
use
map
::
SsoHashMap
;
pub
use
set
::
SsoHashSet
;
Reference in New Issue
Copy Permalink