Skip to main content

AxDashSet

Struct AxDashSet 

Source
pub struct AxDashSet<T, S = BuildHasherDefault<AxHasher>>(/* private fields */);
Expand description

Concurrent hash set backed by dashmap (multi-shard RwLock) with AxHasher (AES-NI accelerated hashing) as the default hasher.

AxDashSet<T> is a thin newtype wrapper around DashSet<T> that adds ergonomic ::new() / ::with_capacity() / ::with_shard_amount() constructors. Every DashSet method is accessible transparently via Deref.

Implementations§

Source§

impl<T> AxDashSet<T, BuildHasherDefault<AxHasher>>
where T: Hash + Eq,

Source

pub fn new() -> Self

Creates an empty set with the default AxHasher and the default shard count.

Source

pub fn with_capacity(capacity: usize) -> Self

Creates an empty set pre-allocated for at least capacity entries.

Source§

impl<T, S> AxDashSet<T, S>
where T: Hash + Eq, S: BuildHasher + Clone,

Source

pub fn with_hasher(hasher: S) -> Self

Creates an empty set using a custom BuildHasher.

Source

pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> Self

Creates an empty set with at least capacity entries and a custom BuildHasher.

Source

pub fn into_inner(self) -> RawDashSet<T, S>

Consumes the wrapper and returns the underlying RawDashSet.

Methods from Deref<Target = RawDashSet<T, S>>§

Source

pub fn hash_usize<T>(&self, item: &T) -> usize
where T: Hash,

Hash a given item to produce a usize. Uses the provided or default HashBuilder.

Source

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!");
Source

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");
Source

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"));
Source

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);
Source

pub fn get<Q>(&'a self, key: &Q) -> Option<Ref<'a, K>>
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");
Source

pub fn shrink_to_fit(&self)

Remove excess capacity to reduce memory usage.

Source

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);
Source

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);
Source

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());
Source

pub fn clear(&self)

Removes all keys in the set.

§Examples
use dashmap::DashSet;

let people = DashSet::new();
people.insert("Albin");
assert!(!people.is_empty());
people.clear();
assert!(people.is_empty());
Source

pub fn capacity(&self) -> usize

Returns how many keys the set can store without reallocating.

Source

pub fn contains<Q>(&self, key: &Q) -> bool
where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

Checks if the set contains a specific key.

§Examples
use dashmap::DashSet;

let people = DashSet::new();
people.insert("Dakota Cherries");
assert!(people.contains("Dakota Cherries"));

Trait Implementations§

Source§

impl<T, S> Debug for AxDashSet<T, S>
where T: Hash + Eq + Debug, S: BuildHasher + Clone,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Default for AxDashSet<T, BuildHasherDefault<AxHasher>>
where T: Hash + Eq,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T, S> Deref for AxDashSet<T, S>

Source§

type Target = DashSet<T, S>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T, S> DerefMut for AxDashSet<T, S>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<T, S> Extend<T> for AxDashSet<T, S>
where T: Hash + Eq, S: BuildHasher + Clone,

Source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<T, S> From<AxDashSet<T, S>> for RawDashSet<T, S>

Source§

fn from(wrapper: AxDashSet<T, S>) -> Self

Converts to this type from the input type.
Source§

impl<T, S> From<DashSet<T, S>> for AxDashSet<T, S>

Source§

fn from(inner: RawDashSet<T, S>) -> Self

Converts to this type from the input type.
Source§

impl<T> FromIterator<T> for AxDashSet<T, BuildHasherDefault<AxHasher>>
where T: Hash + Eq,

Source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T, S> Freeze for AxDashSet<T, S>
where S: Freeze,

§

impl<T, S = BuildHasherDefault<AxHasher>> !RefUnwindSafe for AxDashSet<T, S>

§

impl<T, S> Send for AxDashSet<T, S>
where S: Send, T: Send,

§

impl<T, S> Sync for AxDashSet<T, S>
where S: Sync, T: Send + Sync,

§

impl<T, S> Unpin for AxDashSet<T, S>
where S: Unpin,

§

impl<T, S> UnsafeUnpin for AxDashSet<T, S>
where S: UnsafeUnpin,

§

impl<T, S> UnwindSafe for AxDashSet<T, S>
where S: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.