pub struct HashSet<K, H = RandomState>where
H: BuildHasher,{ /* private fields */ }
Expand description
Implementations§
source§impl<K, H> HashSet<K, H>where
H: BuildHasher,
impl<K, H> HashSet<K, H>where
H: BuildHasher,
sourcepub fn with_hasher(build_hasher: H) -> Self
pub fn with_hasher(build_hasher: H) -> Self
Creates an empty HashSet
with the given BuildHasher
.
§Examples
use scc::HashSet;
use std::collections::hash_map::RandomState;
let hashset: HashSet<u64, RandomState> = HashSet::with_hasher(RandomState::new());
sourcepub fn with_capacity_and_hasher(capacity: usize, build_hasher: H) -> Self
pub fn with_capacity_and_hasher(capacity: usize, build_hasher: H) -> Self
Creates an empty HashSet
with the specified capacity and BuildHasher
.
The actual capacity is equal to or greater than the specified capacity.
§Examples
use scc::HashSet;
use std::collections::hash_map::RandomState;
let hashset: HashSet<u64, RandomState> =
HashSet::with_capacity_and_hasher(1000, RandomState::new());
let result = hashset.capacity();
assert_eq!(result, 1024);
source§impl<K, H> HashSet<K, H>
impl<K, H> HashSet<K, H>
sourcepub fn reserve(&self, capacity: usize) -> Option<Reserve<'_, K, H>>
pub fn reserve(&self, capacity: usize) -> Option<Reserve<'_, K, H>>
Temporarily increases the minimum capacity of the HashSet
.
A Reserve
is returned if the HashSet
could increase the minimum capacity while the
increased capacity is not exclusively owned by the returned Reserve
, allowing others to
benefit from it. The memory for the additional space may not be immediately allocated if
the HashSet
is empty or currently being resized, however once the memory is reserved
eventually, the capacity will not shrink below the additional capacity until the returned
Reserve
is dropped.
§Errors
Returns None
if a too large number is given.
§Examples
use scc::HashSet;
let hashset: HashSet<usize> = HashSet::with_capacity(1000);
assert_eq!(hashset.capacity(), 1024);
let reserved = hashset.reserve(10000);
assert!(reserved.is_some());
assert_eq!(hashset.capacity(), 16384);
assert!(hashset.reserve(usize::MAX).is_none());
assert_eq!(hashset.capacity(), 16384);
for i in 0..16 {
assert!(hashset.insert(i).is_ok());
}
drop(reserved);
assert_eq!(hashset.capacity(), 1024);
sourcepub async fn insert_async(&self, key: K) -> Result<(), K>
pub async fn insert_async(&self, key: K) -> Result<(), K>
Inserts a key into the HashSet
.
It is an asynchronous method returning an impl Future
for the caller to await.
§Errors
Returns an error along with the supplied key if the key exists.
function.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert_async(11);
sourcepub fn remove<Q>(&self, key: &Q) -> Option<K>
pub fn remove<Q>(&self, key: &Q) -> Option<K>
Removes a key if the key exists.
Returns None
if the key does not exist.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.remove(&1).is_none());
assert!(hashset.insert(1).is_ok());
assert_eq!(hashset.remove(&1).unwrap(), 1);
sourcepub async fn remove_async<Q>(&self, key: &Q) -> Option<K>
pub async fn remove_async<Q>(&self, key: &Q) -> Option<K>
Removes a key if the key exists.
Returns None
if the key does not exist. It is an asynchronous method returning an
impl Future
for the caller to await.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert_async(11);
let future_remove = hashset.remove_async(&11);
sourcepub fn remove_if<Q, F: FnOnce() -> bool>(
&self,
key: &Q,
condition: F,
) -> Option<K>
pub fn remove_if<Q, F: FnOnce() -> bool>( &self, key: &Q, condition: F, ) -> Option<K>
Removes a key if the key exists and the given condition is met.
Returns None
if the key does not exist or the condition was not met.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.insert(1).is_ok());
assert!(hashset.remove_if(&1, || false).is_none());
assert_eq!(hashset.remove_if(&1, || true).unwrap(), 1);
sourcepub async fn remove_if_async<Q, F: FnOnce() -> bool>(
&self,
key: &Q,
condition: F,
) -> Option<K>
pub async fn remove_if_async<Q, F: FnOnce() -> bool>( &self, key: &Q, condition: F, ) -> Option<K>
Removes a key if the key exists and the given condition is met.
Returns None
if the key does not exist or the condition was not met. It is an
asynchronous method returning an impl Future
for the caller to await.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert_async(11);
let future_remove = hashset.remove_if_async(&11, || true);
sourcepub fn read<Q, R, F: FnOnce(&K) -> R>(&self, key: &Q, reader: F) -> Option<R>
pub fn read<Q, R, F: FnOnce(&K) -> R>(&self, key: &Q, reader: F) -> Option<R>
Reads a key.
Returns None
if the key does not exist.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.read(&1, |_| true).is_none());
assert!(hashset.insert(1).is_ok());
assert!(hashset.read(&1, |_| true).unwrap());
sourcepub async fn read_async<Q, R, F: FnOnce(&K) -> R>(
&self,
key: &Q,
reader: F,
) -> Option<R>
pub async fn read_async<Q, R, F: FnOnce(&K) -> R>( &self, key: &Q, reader: F, ) -> Option<R>
Reads a key.
Returns None
if the key does not exist. It is an asynchronous method returning an
impl Future
for the caller to await.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert_async(11);
let future_read = hashset.read_async(&11, |k| *k);
sourcepub async fn contains_async<Q>(&self, key: &Q) -> bool
pub async fn contains_async<Q>(&self, key: &Q) -> bool
sourcepub fn scan<F: FnMut(&K)>(&self, scanner: F)
pub fn scan<F: FnMut(&K)>(&self, scanner: F)
Scans all the keys.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another thread.
§Examples
use scc::HashSet;
let hashset: HashSet<usize> = HashSet::default();
assert!(hashset.insert(1).is_ok());
assert!(hashset.insert(2).is_ok());
let mut sum = 0;
hashset.scan(|k| { sum += *k; });
assert_eq!(sum, 3);
sourcepub async fn scan_async<F: FnMut(&K)>(&self, scanner: F)
pub async fn scan_async<F: FnMut(&K)>(&self, scanner: F)
Scans all the keys.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another task.
§Examples
use scc::HashSet;
let hashset: HashSet<usize> = HashSet::default();
let future_insert = hashset.insert_async(1);
let future_scan = hashset.scan_async(|k| println!("{k}"));
sourcepub fn any<P: FnMut(&K) -> bool>(&self, pred: P) -> bool
pub fn any<P: FnMut(&K) -> bool>(&self, pred: P) -> bool
Searches for any key that satisfies the given predicate.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another task.
Returns true
if a key satisfying the predicate is found.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.insert(1).is_ok());
assert!(hashset.insert(2).is_ok());
assert!(hashset.insert(3).is_ok());
assert!(hashset.any(|k| *k == 1));
assert!(!hashset.any(|k| *k == 4));
sourcepub async fn any_async<P: FnMut(&K) -> bool>(&self, pred: P) -> bool
pub async fn any_async<P: FnMut(&K) -> bool>(&self, pred: P) -> bool
Searches for any key that satisfies the given predicate.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another task.
It is an asynchronous method returning an impl Future
for the caller to await.
Returns true
if a key satisfying the predicate is found.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert(1);
let future_any = hashset.any_async(|k| *k == 1);
sourcepub fn retain<F: FnMut(&K) -> bool>(&self, filter: F)
pub fn retain<F: FnMut(&K) -> bool>(&self, filter: F)
Retains keys that satisfy the given predicate.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another thread.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.insert(1).is_ok());
assert!(hashset.insert(2).is_ok());
assert!(hashset.insert(3).is_ok());
hashset.retain(|k| *k == 1);
assert!(hashset.contains(&1));
assert!(!hashset.contains(&2));
assert!(!hashset.contains(&3));
sourcepub async fn retain_async<F: FnMut(&K) -> bool>(&self, filter: F)
pub async fn retain_async<F: FnMut(&K) -> bool>(&self, filter: F)
Retains keys that satisfy the given predicate.
Keys that have existed since the invocation of the method are guaranteed to be visited if
they are not removed, however the same key can be visited more than once if the HashSet
gets resized by another task.
It is an asynchronous method returning an impl Future
for the caller to await.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
let future_insert = hashset.insert_async(1);
let future_retain = hashset.retain_async(|k| *k == 1);
sourcepub async fn clear_async(&self)
pub async fn clear_async(&self)
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of entries in the HashSet
.
It reads the entire metadata area of the bucket array to calculate the number of valid
entries, making its time complexity O(N)
. Furthermore, it may overcount entries if an old
bucket array has yet to be dropped.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert!(hashset.insert(1).is_ok());
assert_eq!(hashset.len(), 1);
sourcepub fn capacity(&self) -> usize
pub fn capacity(&self) -> usize
Returns the capacity of the HashSet
.
§Examples
use scc::HashSet;
let hashset_default: HashSet<u64> = HashSet::default();
assert_eq!(hashset_default.capacity(), 0);
assert!(hashset_default.insert(1).is_ok());
assert_eq!(hashset_default.capacity(), 64);
let hashset: HashSet<u64> = HashSet::with_capacity(1000);
assert_eq!(hashset.capacity(), 1024);
sourcepub fn capacity_range(&self) -> RangeInclusive<usize>
pub fn capacity_range(&self) -> RangeInclusive<usize>
Returns the current capacity range of the HashSet
.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::default();
assert_eq!(hashset.capacity_range(), 0..=(1_usize << (usize::BITS - 1)));
let reserved = hashset.reserve(1000);
assert_eq!(hashset.capacity_range(), 1000..=(1_usize << (usize::BITS - 1)));
sourcepub fn bucket_index<Q>(&self, key: &Q) -> usize
pub fn bucket_index<Q>(&self, key: &Q) -> usize
Returns the index of the bucket that may contain the key.
The method returns the index of the bucket associated with the key. The number of buckets
can be calculated by dividing 32
into the capacity.
§Examples
use scc::HashSet;
let hashset: HashSet<u64> = HashSet::with_capacity(1024);
let bucket_index = hashset.bucket_index(&11);
assert!(bucket_index < hashset.capacity() / 32);
Trait Implementations§
Auto Trait Implementations§
impl<K, H = RandomState> !Freeze for HashSet<K, H>
impl<K, H> RefUnwindSafe for HashSet<K, H>where
H: RefUnwindSafe,
impl<K, H> Send for HashSet<K, H>
impl<K, H> Sync for HashSet<K, H>
impl<K, H> Unpin for HashSet<K, H>where
H: Unpin,
impl<K, H> UnwindSafe for HashSet<K, H>where
H: UnwindSafe,
K: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)