Searched refs:AHashSet (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/ahash/src/ |
D | hash_set.rs | 17 pub struct AHashSet<T, S = RandomState>(HashSet<T, S>); struct 19 impl<T> From<HashSet<T, RandomState>> for AHashSet<T> { implementation 21 AHashSet(item) in from() 25 impl<T, const N: usize> From<[T; N]> for AHashSet<T> implementation 43 impl<T> Into<HashSet<T, RandomState>> for AHashSet<T> { implementation 49 impl<T> AHashSet<T, RandomState> { impl 53 AHashSet(HashSet::with_hasher(RandomState::new())) in new() 59 AHashSet(HashSet::with_capacity_and_hasher(capacity, RandomState::new())) in with_capacity() 63 impl<T, S> AHashSet<T, S> implementation 68 AHashSet(HashSet::with_hasher(hash_builder)) in with_hasher() [all …]
|
D | lib.rs | 127 pub use crate::hash_set::AHashSet;
|
/aosp_15_r20/external/rust/android-crates-io/crates/ahash/ |
D | README.md | 41 For convenience, wrappers called `AHashMap` and `AHashSet` are also provided. 54 …ard library. (On by default) This includes providing the utility classes `AHashMap` and `AHashSet`. 55 * `serde`: Enables `serde` support for the utility classes `AHashMap` and `AHashSet`.
|