Home
last modified time | relevance | path

Searched refs:PtrWeakWeakHashMap (Results 1 – 2 of 2) sorted by relevance

/external/rust/android-crates-io/crates/weak-table/src/
Dptr_weak_weak_hash_map.rs10 pub use super::PtrWeakWeakHashMap;
13 impl <K: WeakElement, V: WeakElement> PtrWeakWeakHashMap<K, V, RandomState> impl
20 PtrWeakWeakHashMap(base::WeakWeakHashMap::new()) in new()
27 PtrWeakWeakHashMap(base::WeakWeakHashMap::with_capacity(capacity)) in with_capacity()
31 impl <K: WeakElement, V: WeakElement, S: BuildHasher> PtrWeakWeakHashMap<K, V, S> impl
38 PtrWeakWeakHashMap(base::WeakWeakHashMap::with_hasher(hash_builder)) in with_hasher()
45 PtrWeakWeakHashMap(base::WeakWeakHashMap::with_capacity_and_hasher(capacity, hash_builder)) in with_capacity_and_hasher()
171 …pub fn submap_with<F, S1, V1>(&self, other: &PtrWeakWeakHashMap<K, V1, S1>, value_equal: F) -> bool in submap_with()
184 pub fn is_submap<V1, S1>(&self, other: &PtrWeakWeakHashMap<K, V1, S1>) -> bool in is_submap()
197 pub fn domain_is_subset<V1, S1>(&self, other: &PtrWeakWeakHashMap<K, V1, S1>) -> bool in domain_is_subset()
[all …]
Dlib.rs251 pub struct PtrWeakWeakHashMap<K, V, S = RandomState>( struct