pub struct DashSet<K, S = RandomState> { /* private fields */ }
Expand description
DashSet is a thin wrapper around DashMap
using ()
as the value type. It uses
methods and types which are more convenient to work with on a set.
Implementations§
source§impl<'a, K: 'a + Eq + Hash> DashSet<K, RandomState>
impl<'a, K: 'a + Eq + Hash> DashSet<K, RandomState>
sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new DashSet with a capacity of 0.
Examples
use dashmap::DashSet;
let games = DashSet::new();
games.insert("Veloren");
sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Creates a new DashMap with a specified starting capacity.
Examples
use dashmap::DashSet;
let numbers = DashSet::with_capacity(2);
numbers.insert(2);
numbers.insert(8);
source§impl<'a, K: 'a + Eq + Hash, S: BuildHasher + Clone> DashSet<K, S>
impl<'a, K: 'a + Eq + Hash, S: BuildHasher + Clone> DashSet<K, S>
sourcepub fn with_hasher(hasher: S) -> Self
pub fn with_hasher(hasher: S) -> Self
Creates a new DashMap with a capacity of 0 and the provided hasher.
Examples
use dashmap::DashSet;
use std::collections::hash_map::RandomState;
let s = RandomState::new();
let games = DashSet::with_hasher(s);
games.insert("Veloren");
sourcepub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> Self
pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> Self
Creates a new DashMap with a specified starting capacity and hasher.
Examples
use dashmap::DashSet;
use std::collections::hash_map::RandomState;
let s = RandomState::new();
let numbers = DashSet::with_capacity_and_hasher(2, s);
numbers.insert(2);
numbers.insert(8);
sourcepub fn hash_usize<T: Hash>(&self, item: &T) -> usize
pub fn hash_usize<T: Hash>(&self, item: &T) -> usize
Hash a given item to produce a usize. Uses the provided or default HashBuilder.
sourcepub fn shards(&self) -> &[RwLock<HashMap<K, SharedValue<()>, S>>]
pub fn shards(&self) -> &[RwLock<HashMap<K, SharedValue<()>, S>>]
Allows you to peek at the inner shards that store your data. You should probably not use this unless you know what you are doing.
Requires the raw-api
feature to be enabled.
Examples
use dashmap::DashSet;
let set = DashSet::<()>::new();
println!("Amount of shards: {}", set.shards().len());
sourcepub fn determine_map<Q>(&self, key: &Q) -> usizewhere
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn determine_map<Q>(&self, key: &Q) -> usizewhere K: Borrow<Q>, Q: Hash + Eq + ?Sized,
Finds which shard a certain key is stored in. You should probably not use this unless you know what you are doing. Note that shard selection is dependent on the default or provided HashBuilder.
Requires the raw-api
feature to be enabled.
Examples
use dashmap::DashSet;
let set = DashSet::new();
set.insert("coca-cola");
println!("coca-cola is stored in shard: {}", set.determine_map("coca-cola"));
sourcepub fn determine_shard(&self, hash: usize) -> usize
pub fn determine_shard(&self, hash: usize) -> usize
Finds which shard a certain hash is stored in.
Requires the raw-api
feature to be enabled.
Examples
use dashmap::DashSet;
let set: DashSet<i32> = DashSet::new();
let key = "key";
let hash = set.hash_usize(&key);
println!("hash is stored in shard: {}", set.determine_shard(hash));
sourcepub fn insert(&self, key: K) -> bool
pub fn insert(&self, key: K) -> bool
Inserts a key into the set. Returns true if the key was not already in the set.
Examples
use dashmap::DashSet;
let set = DashSet::new();
set.insert("I am the key!");
sourcepub fn remove<Q>(&self, key: &Q) -> Option<K>where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn remove<Q>(&self, key: &Q) -> Option<K>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,
Removes an entry from the map, returning the key if it existed in the map.
Examples
use dashmap::DashSet;
let soccer_team = DashSet::new();
soccer_team.insert("Jack");
assert_eq!(soccer_team.remove("Jack").unwrap(), "Jack");
sourcepub fn remove_if<Q>(&self, key: &Q, f: impl FnOnce(&K) -> bool) -> Option<K>where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn remove_if<Q>(&self, key: &Q, f: impl FnOnce(&K) -> bool) -> Option<K>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,
Removes an entry from the set, returning the key if the entry existed and the provided conditional function returned true.
use dashmap::DashSet;
let soccer_team = DashSet::new();
soccer_team.insert("Sam");
soccer_team.remove_if("Sam", |player| player.starts_with("Ja"));
assert!(soccer_team.contains("Sam"));
use dashmap::DashSet;
let soccer_team = DashSet::new();
soccer_team.insert("Sam");
soccer_team.remove_if("Jacob", |player| player.starts_with("Ja"));
assert!(!soccer_team.contains("Jacob"));
sourcepub fn iter(&'a self) -> Iter<'a, K, S, DashMap<K, (), S>> ⓘ
pub fn iter(&'a self) -> Iter<'a, K, S, DashMap<K, (), S>> ⓘ
Creates an iterator over a DashMap yielding immutable references.
Examples
use dashmap::DashSet;
let words = DashSet::new();
words.insert("hello");
assert_eq!(words.iter().count(), 1);
sourcepub fn get<Q>(&'a self, key: &Q) -> Option<Ref<'a, K, S>>where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
pub fn get<Q>(&'a self, key: &Q) -> Option<Ref<'a, K, S>>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,
Get a reference to an entry in the set
Examples
use dashmap::DashSet;
let youtubers = DashSet::new();
youtubers.insert("Bosnian Bill");
assert_eq!(*youtubers.get("Bosnian Bill").unwrap(), "Bosnian Bill");
sourcepub fn shrink_to_fit(&self)
pub fn shrink_to_fit(&self)
Remove excess capacity to reduce memory usage.
sourcepub fn retain(&self, f: impl FnMut(&K) -> bool)
pub fn retain(&self, f: impl FnMut(&K) -> bool)
Retain elements that whose predicates return true and discard elements whose predicates return false.
Examples
use dashmap::DashSet;
let people = DashSet::new();
people.insert("Albin");
people.insert("Jones");
people.insert("Charlie");
people.retain(|name| name.contains('i'));
assert_eq!(people.len(), 2);
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Fetches the total number of keys stored in the set.
Examples
use dashmap::DashSet;
let people = DashSet::new();
people.insert("Albin");
people.insert("Jones");
people.insert("Charlie");
assert_eq!(people.len(), 3);
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Checks if the set is empty or not.
Examples
use dashmap::DashSet;
let map = DashSet::<()>::new();
assert!(map.is_empty());
Trait Implementations§
source§impl<'de, K, S> Deserialize<'de> for DashSet<K, S>where
K: Deserialize<'de> + Eq + Hash,
S: BuildHasher + Clone + Default,
impl<'de, K, S> Deserialize<'de> for DashSet<K, S>where K: Deserialize<'de> + Eq + Hash, S: BuildHasher + Clone + Default,
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl<K: Eq + Hash, S: BuildHasher + Clone> Extend<K> for DashSet<K, S>
impl<K: Eq + Hash, S: BuildHasher + Clone> Extend<K> for DashSet<K, S>
source§fn extend<T: IntoIterator<Item = K>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = K>>(&mut self, iter: T)
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<K: Eq + Hash, S: BuildHasher + Clone + Default> FromIterator<K> for DashSet<K, S>
impl<K: Eq + Hash, S: BuildHasher + Clone + Default> FromIterator<K> for DashSet<K, S>
source§fn from_iter<I: IntoIterator<Item = K>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = K>>(iter: I) -> Self
source§impl<K, S> FromParallelIterator<K> for DashSet<K, S>where
K: Send + Sync + Eq + Hash,
S: Send + Sync + Clone + Default + BuildHasher,
impl<K, S> FromParallelIterator<K> for DashSet<K, S>where K: Send + Sync + Eq + Hash, S: Send + Sync + Clone + Default + BuildHasher,
source§fn from_par_iter<I>(par_iter: I) -> Selfwhere
I: IntoParallelIterator<Item = K>,
fn from_par_iter<I>(par_iter: I) -> Selfwhere I: IntoParallelIterator<Item = K>,
par_iter
. Read moresource§impl<K: Eq + Hash, S: BuildHasher + Clone> IntoIterator for DashSet<K, S>
impl<K: Eq + Hash, S: BuildHasher + Clone> IntoIterator for DashSet<K, S>
source§impl<'a, K, S> IntoParallelIterator for &'a DashSet<K, S>where
K: Send + Sync + Eq + Hash,
S: Send + Sync + Clone + BuildHasher,
impl<'a, K, S> IntoParallelIterator for &'a DashSet<K, S>where K: Send + Sync + Eq + Hash, S: Send + Sync + Clone + BuildHasher,
source§impl<K, S> IntoParallelIterator for DashSet<K, S>where
K: Send + Eq + Hash,
S: Send + Clone + BuildHasher,
impl<K, S> IntoParallelIterator for DashSet<K, S>where K: Send + Eq + Hash, S: Send + Clone + BuildHasher,
§type Iter = OwningIter<K, S>
type Iter = OwningIter<K, S>
source§fn into_par_iter(self) -> Self::Iter
fn into_par_iter(self) -> Self::Iter
self
into a parallel iterator. Read moresource§impl<K, S> ParallelExtend<K> for &DashSet<K, S>where
K: Send + Sync + Eq + Hash,
S: Send + Sync + Clone + BuildHasher,
impl<K, S> ParallelExtend<K> for &DashSet<K, S>where K: Send + Sync + Eq + Hash, S: Send + Sync + Clone + BuildHasher,
source§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = K>,
fn par_extend<I>(&mut self, par_iter: I)where I: IntoParallelIterator<Item = K>,
par_iter
. Read moresource§impl<K, S> ParallelExtend<K> for DashSet<K, S>where
K: Send + Sync + Eq + Hash,
S: Send + Sync + Clone + BuildHasher,
impl<K, S> ParallelExtend<K> for DashSet<K, S>where K: Send + Sync + Eq + Hash, S: Send + Sync + Clone + BuildHasher,
source§fn par_extend<I>(&mut self, par_iter: I)where
I: IntoParallelIterator<Item = K>,
fn par_extend<I>(&mut self, par_iter: I)where I: IntoParallelIterator<Item = K>,
par_iter
. Read moreAuto Trait Implementations§
impl<K, S = RandomState> !RefUnwindSafe for DashSet<K, S>
impl<K, S> Send for DashSet<K, S>where K: Send, S: Send,
impl<K, S> Sync for DashSet<K, S>where K: Send + Sync, S: Send + Sync,
impl<K, S> Unpin for DashSet<K, S>where S: Unpin,
impl<K, S> UnwindSafe for DashSet<K, S>where K: UnwindSafe, S: UnwindSafe,
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<'data, I> IntoParallelRefIterator<'data> for Iwhere
I: 'data + ?Sized,
&'data I: IntoParallelIterator,
impl<'data, I> IntoParallelRefIterator<'data> for Iwhere I: 'data + ?Sized, &'data I: IntoParallelIterator,
§type Iter = <&'data I as IntoParallelIterator>::Iter
type Iter = <&'data I as IntoParallelIterator>::Iter
§type Item = <&'data I as IntoParallelIterator>::Item
type Item = <&'data I as IntoParallelIterator>::Item
&'data T
reference type.