about summary refs log tree commit diff
path: root/src/librustc_data_structures/stable_set.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-77/+0
2019-09-28data_structures: Add deterministic FxHashMap and FxHashSet wrappersShivani Bhardwaj-0/+77
StableMap A wrapper for FxHashMap that allows to insert, remove, get and get_mut but no iteration support. StableSet A wrapper for FxHashSet that allows to insert, remove, get and create a sorted vector from a hashset but no iteration support.