Skip to main content

NoKeyBoomHashMap2

Struct NoKeyBoomHashMap2 

Source
pub struct NoKeyBoomHashMap2<K, D1, D2> {
    pub mphf: Mphf<K>,
    pub values: Vec<D1>,
    pub aux_values: Vec<D2>,
}
Expand description

A HashMap data structure where the mapping between keys and values is encoded in a Mphf. Keys are not stored - this can greatly improve the memory consumption, but can only be used if you can guarantee that you will only query for keys that were in the original set. Querying for a new key will return a random value, silently.

Fields§

§mphf: Mphf<K>§values: Vec<D1>§aux_values: Vec<D2>

Implementations§

Source§

impl<K, D1, D2> NoKeyBoomHashMap2<K, D1, D2>
where K: ConstructibleKey, D1: Debug, D2: Debug,

Source

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

Source

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

Source

pub fn new_with_mphf( mphf: Mphf<K>, values: Vec<D1>, aux_values: Vec<D2>, ) -> NoKeyBoomHashMap2<K, D1, D2>

Source

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

Get the value associated with key. You must use a key that was supplied during the creation of the BoomHashMap. Querying for a new key will yield Some with a random value, or None. Querying with a valid key will always return Some.

Source

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

Mutably get the value associated with key. You must use a key that was supplied during the creation of the BoomHashMap. Querying for a new key will yield Some with a random value, or None. Querying with a valid key will always return Some.

Trait Implementations§

Source§

impl<K: Clone, D1: Clone, D2: Clone> Clone for NoKeyBoomHashMap2<K, D1, D2>

Source§

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

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<K: Debug, D1: Debug, D2: Debug> Debug for NoKeyBoomHashMap2<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 NoKeyBoomHashMap2<K, D1, D2>
where K: ConstructibleKey, 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

Auto Trait Implementations§

§

impl<K, D1, D2> Freeze for NoKeyBoomHashMap2<K, D1, D2>

§

impl<K, D1, D2> RefUnwindSafe for NoKeyBoomHashMap2<K, D1, D2>

§

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

§

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

§

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

§

impl<K, D1, D2> UnsafeUnpin for NoKeyBoomHashMap2<K, D1, D2>

§

impl<K, D1, D2> UnwindSafe for NoKeyBoomHashMap2<K, D1, D2>
where K: UnwindSafe, D1: UnwindSafe, D2: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> ToOwned for T
where T: Clone,

Source§

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 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.