Searched refs:WeakValueHashMap (Results 1 – 2 of 2) sorted by relevance
/external/rust/android-crates-io/crates/weak-table/src/ |
D | weak_value_hash_map.rs | 8 pub use super::WeakValueHashMap; 155 impl<K: Eq + Hash, V: WeakElement> WeakValueHashMap<K, V, RandomState> implementation 172 impl<K: Eq + Hash, V: WeakElement, S: BuildHasher> WeakValueHashMap<K, V, S> impl 185 WeakValueHashMap { in with_capacity_and_hasher() 453 pub fn is_submap_with<F, S1, V1>(&self, other: &WeakValueHashMap<K, V1, S1>, in is_submap_with() 477 pub fn is_submap<V1, S1>(&self, other: &WeakValueHashMap<K, V1, S1>) -> bool in is_submap() 490 pub fn domain_is_subset<V1, S1>(&self, other: &WeakValueHashMap<K, V1, S1>) -> bool in domain_is_subset() 507 impl<K, V, V1, S, S1> PartialEq<WeakValueHashMap<K, V1, S1>> for WeakValueHashMap<K, V, S> implementation 515 fn eq(&self, other: &WeakValueHashMap<K, V1, S1>) -> bool { in eq() 520 impl<K: Eq + Hash, V: WeakElement, S: BuildHasher> Eq for WeakValueHashMap<K, V, S> implementation [all …]
|
D | lib.rs | 221 pub struct WeakValueHashMap<K, V, S = RandomState> { struct
|