]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_data_structures/sorted_map.rs
Stabilize const for integer {to,from}_{be,le,ne}_bytes methods
[rust.git] / src / librustc_data_structures / sorted_map.rs
index 08706aac11e41e88748a8b4a69bf955a90144a9a..8c42b74b85aef4f0c35a45936ae639c785f52d7d 100644 (file)
@@ -4,6 +4,10 @@
 use std::mem;
 use std::ops::{Bound, Index, IndexMut, RangeBounds};
 
+mod index_map;
+
+pub use index_map::SortedIndexMultiMap;
+
 /// `SortedMap` is a data structure with similar characteristics as BTreeMap but
 /// slightly different trade-offs: lookup, insertion, and removal are O(log(N))
 /// and elements can be iterated in order cheaply.