Struct RangeMultiMap

Source
pub struct RangeMultiMap<T, V> { /* private fields */ }
Expand description

A multi-valued mapping from primitive integers to other data.

Implementations§

Source§

impl<T: Debug + PrimInt, V: Clone + Debug + PartialEq> RangeMultiMap<T, V>

Source

pub fn new() -> RangeMultiMap<T, V>

Creates a new empty map.

Source

pub fn num_ranges(&self) -> usize

Returns the number of mapped ranges.

Source

pub fn is_empty(&self) -> bool

Checks if the map is empty.

Source

pub fn insert(&mut self, range: Range<T>, value: V)

Adds a new mapping from a range of characters to value.

Source

pub fn from_vec(vec: Vec<(Range<T>, V)>) -> RangeMultiMap<T, V>

Creates a map from a vector of pairs.

Source

pub fn intersection(&self, other: &RangeSet<T>) -> RangeMultiMap<T, V>

Returns a new RangeMultiMap containing only the mappings for keys that belong to the given set.

Source

pub fn map_values<F>(&mut self, f: F)
where F: FnMut(&V) -> V,

Source

pub fn retain_values<F>(&mut self, f: F)
where F: FnMut(&V) -> bool,

Modifies this map in place to only contain mappings whose values v satisfy f(v).

Source

pub fn into_vec(self) -> Vec<(Range<T>, V)>

Returns the underlying Vec.

Source

pub fn ranges_values<'a>(&'a self) -> Iter<'a, (Range<T>, V)>

Iterates over all the mapped ranges and values.

Source§

impl<T: Debug + PrimInt, V: Clone + Debug + Ord> RangeMultiMap<T, V>

Source

pub fn group(&self) -> RangeMap<T, Vec<V>>

Makes the ranges sorted and non-overlapping. The data associated with each range will be a Vec<T> instead of a single T.

Trait Implementations§

Source§

impl<T: Clone, V: Clone> Clone for RangeMultiMap<T, V>

Source§

fn clone(&self) -> RangeMultiMap<T, V>

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<T: Debug + PrimInt, V: Clone + Debug + PartialEq> Debug for RangeMultiMap<T, V>

Source§

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

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

impl<T: Debug + PrimInt, V: Clone + Debug + PartialEq> FromIterator<(Range<T>, V)> for RangeMultiMap<T, V>

Source§

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

Builds a RangeMultiMap from an iterator over Range and values..

Source§

impl<T: Hash, V: Hash> Hash for RangeMultiMap<T, V>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: PartialEq, V: PartialEq> PartialEq for RangeMultiMap<T, V>

Source§

fn eq(&self, other: &RangeMultiMap<T, V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Eq, V: Eq> Eq for RangeMultiMap<T, V>

Source§

impl<T, V> StructuralPartialEq for RangeMultiMap<T, V>

Auto Trait Implementations§

§

impl<T, V> Freeze for RangeMultiMap<T, V>

§

impl<T, V> RefUnwindSafe for RangeMultiMap<T, V>

§

impl<T, V> Send for RangeMultiMap<T, V>
where V: Send, T: Send,

§

impl<T, V> Sync for RangeMultiMap<T, V>
where V: Sync, T: Sync,

§

impl<T, V> Unpin for RangeMultiMap<T, V>
where V: Unpin, T: Unpin,

§

impl<T, V> UnwindSafe for RangeMultiMap<T, V>
where V: 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> 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> 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.