Struct RangeMap

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

A set of characters. Optionally, each character in the set may be associated with some data.

Implementations§

Source§

impl<T: Debug + PrimInt, V: Clone + Debug + Eq> RangeMap<T, V>

Source

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

Creates a new empty RangeMap.

Source

pub fn try_from_iter<I: IntoIterator<Item = (Range<T>, V)>>( iter: I, ) -> Result<RangeMap<T, V>, OverlapError<T, V>>

Builds a RangeMap from an iterator over pairs. If any ranges overlap, they should map to the same value. If not, returns an OverlapError.

Source

pub fn num_ranges(&self) -> usize

Returns the number of mapped ranges.

Note that this is not usually the same as the number of mapped values.

Source

pub fn is_empty(&self) -> bool

Tests whether this map is empty.

Source

pub fn is_full(&self) -> bool

Tests whether this CharMap maps every value.

Source

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

Iterates over all the mapped ranges and values.

Source

pub fn keys_values<'a>(&'a self) -> PairIter<'a, T, V>

Iterates over all mappings.

Source

pub fn get(&self, x: T) -> Option<&V>

Finds the value that x maps to, if it exists.

Runs in O(log n) time, where n is the number of mapped ranges.

Source

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

Returns those mappings whose keys belong to the given set.

Source

pub fn num_keys(&self) -> usize

Counts the number of mapped keys.

This saturates at usize::MAX.

Source

pub fn to_range_set(&self) -> RangeSet<T>

Returns the set of mapped chars, forgetting what they are mapped to.

Source

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

Modifies the values in place.

Source

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

Modifies this map to contain only those mappings with values v satisfying f(v).

Source

pub fn as_mut_slice(&mut self) -> &mut [(Range<T>, V)]

Returns a mutable view into this map.

The ranges should not be modified, since that might violate our invariants.

This method will eventually be removed, probably once anonymous return values allow is to write a values_mut() iterator more easily.

Trait Implementations§

Source§

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

Source§

fn clone(&self) -> RangeMap<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, V: Debug> Debug for RangeMap<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 + Eq> FromIterator<(Range<T>, V)> for RangeMap<T, V>

Source§

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

Builds a RangeMap from an iterator over pairs. If any ranges overlap, they must map to the same value.

§Panics

Panics if there are ranges that overlap and do not map to the same value. If you are not sure whether this could happen, use RangeMap::try_from_iter instead.

Source§

impl<T: Hash, V: Hash> Hash for RangeMap<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 RangeMap<T, V>

Source§

fn eq(&self, other: &RangeMap<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 RangeMap<T, V>

Source§

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

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<T, V> UnwindSafe for RangeMap<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.