Searched defs:WeakHashSet (Results  1 – 2 of 2) sorted by relevance
| /external/rust/android-crates-io/crates/weak-table/src/ | 
| D | weak_hash_set.rs | 10 impl <T: WeakKey> WeakHashSet<T, RandomState> {  implementation26 impl <T: WeakKey, S: BuildHasher> WeakHashSet<T, S> {  implementation
 234 impl<T: WeakKey, S> WeakHashSet<T, S> {  implementation
 250 impl<T, S, S1> PartialEq<WeakHashSet<T, S1>> for WeakHashSet<T, S>  implementation
 260 impl<T: WeakKey, S: BuildHasher> Eq for WeakHashSet<T, S>  implementation
 264 impl<T: WeakKey, S: BuildHasher + Default> Default for WeakHashSet<T, S> {  implementation
 270 impl<T, S> FromIterator<T::Strong> for WeakHashSet<T, S>  implementation
 280 impl<T: WeakKey, S: BuildHasher> Extend<T::Strong> for WeakHashSet<T, S> {  implementation
 286 impl<T: WeakKey, S> Debug for WeakHashSet<T, S>  implementation
 294 impl<T: WeakKey, S> IntoIterator for WeakHashSet<T, S> {  implementation
 [all …]
 
 | 
| D | lib.rs | 259 pub struct WeakHashSet<T, S = RandomState>(WeakKeyHashMap<T, (), S>);  struct
 |