Lines Matching refs:SparseMap
61 pub struct SparseMap<K, V> struct
70 impl<K, V> SparseMap<K, V> argument
207 impl<K, V> Default for SparseMap<K, V> implementation
212 fn default() -> SparseMap<K, V> { in default()
213 SparseMap::new() in default()
217 impl<K, V> fmt::Debug for SparseMap<K, V> implementation
230 impl<'a, K, V> IntoIterator for &'a SparseMap<K, V> implementation
256 pub type SparseSet<T> = SparseMap<T, T>;
282 let map: SparseMap<Inst, Obj> = SparseMap::new(); in empty_immutable_map()
295 let mut map = SparseMap::new(); in single_entry()
330 let mut map = SparseMap::new(); in multiple_entries()
395 let map: SparseMap<Inst, Obj> = SparseMap::default(); in default_impl()
404 let mut map = SparseMap::new(); in debug_impl()