pub struct BoomHashMap2<K: Hash, D1, D2> { /* private fields */ }
Expand description

A HashMap data structure where the mapping between keys and 2 values is encoded in a Mphf. You should usually use BoomHashMap with a tuple/struct value type. If the layout overhead of the struct / tuple must be avoided, this variant of is an alternative. This lets us store the keys and values in dense arrays, with ~3 bits/item overhead in the Mphf.

Implementations§

source§

impl<K, D1, D2> BoomHashMap2<K, D1, D2>where K: Hash + Debug + PartialEq, D1: Debug, D2: Debug,

source

pub fn new( keys: Vec<K>, values: Vec<D1>, aux_values: Vec<D2> ) -> BoomHashMap2<K, D1, D2>

Create a new hash map from the parallel arrays keys and values, and aux_values

source

pub fn get<Q>(&self, kmer: &Q) -> Option<(&D1, &D2)>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

source

pub fn get_mut<Q>(&mut self, kmer: &Q) -> Option<(&mut D1, &mut D2)>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

source

pub fn get_key_id<Q>(&self, kmer: &Q) -> Option<usize>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn iter(&self) -> Boom2Iterator<'_, K, D1, D2>

source

pub fn get_key(&self, id: usize) -> Option<&K>

source§

impl<K, D1, D2> BoomHashMap2<K, D1, D2>where K: Hash + Debug + PartialEq + Send + Sync, D1: Debug, D2: Debug,

source

pub fn new_parallel( keys: Vec<K>, data: Vec<D1>, aux_data: Vec<D2> ) -> BoomHashMap2<K, D1, D2>

Create a new hash map from the parallel arrays keys and values, and aux_values, using a parallel algorithm to construct the Mphf.

Trait Implementations§

source§

impl<K: Clone + Hash, D1: Clone, D2: Clone> Clone for BoomHashMap2<K, D1, D2>

source§

fn clone(&self) -> BoomHashMap2<K, D1, D2>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K: Debug + Hash, D1: Debug, D2: Debug> Debug for BoomHashMap2<K, D1, D2>

source§

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

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

impl<K, D1, D2> FromIterator<(K, D1, D2)> for BoomHashMap2<K, D1, D2>where K: Hash + Debug + PartialEq, D1: Debug, D2: Debug,

source§

fn from_iter<I: IntoIterator<Item = (K, D1, D2)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, K: Hash, D1, D2> IntoIterator for &'a BoomHashMap2<K, D1, D2>

§

type Item = (&'a K, &'a D1, &'a D2)

The type of the elements being iterated over.
§

type IntoIter = Boom2Iterator<'a, K, D1, D2>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Boom2Iterator<'a, K, D1, D2>

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<K, D1, D2> RefUnwindSafe for BoomHashMap2<K, D1, D2>where D1: RefUnwindSafe, D2: RefUnwindSafe, K: RefUnwindSafe,

§

impl<K, D1, D2> Send for BoomHashMap2<K, D1, D2>where D1: Send, D2: Send, K: Send,

§

impl<K, D1, D2> Sync for BoomHashMap2<K, D1, D2>where D1: Sync, D2: Sync, K: Sync,

§

impl<K, D1, D2> Unpin for BoomHashMap2<K, D1, D2>where D1: Unpin, D2: Unpin, K: Unpin,

§

impl<K, D1, D2> UnwindSafe for BoomHashMap2<K, D1, D2>where D1: UnwindSafe, D2: UnwindSafe, K: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.