Skip to main content

DenseRangeMapBuilder

Struct DenseRangeMapBuilder 

Source
struct DenseRangeMapBuilder<K, V1, V2> {
    starts: Vec<K>,
    values1: Vec<Option<V1>>,
    values2: Option<Vec<Option<V2>>>,
    prev_end: Option<K>,
}
Expand description

A helper type to create a DenseRangeMap from a sorted list of disjoint ranges.

§Invariants

  • starts.len() == values.len()
  • starts is sorted and contains no duplicates.
  • starts is empty if and only if prev_end is None.

§Semantics

If starts is empty, nothing has been added to this Builder.

Otherwise:

  • Every key such that K::min <= key < starts[0] maps to None.
  • Every key such that starts[idx] <= key < starts[idx+1] maps to values[idx], which may be Some or None.
  • Every key such that key <= starts.last() <= prev_end maps to values.last().
  • No mappings have been added for any range S..=E such that ’S > prev_end`.

Fields§

§starts: Vec<K>

A list of range starts so far.

§values1: Vec<Option<V1>>

A list of values so far.

§values2: Option<Vec<Option<V2>>>

A list of secondary values so far.

None if we’re ignoring secondary values.

§prev_end: Option<K>

The last element of the most recently added range.

Implementations§

Source§

impl<K, V1, V2> DenseRangeMapBuilder<K, V1, V2>
where K: Clone + 'static + Eq + Ord + Successor, V1: Clone + 'static, V2: Clone + 'static,

Source

fn new() -> Self

Construct a new empty builder.

Source

fn push(&mut self, start: K, v1: Option<V1>, v2: Option<V2>)

Add a single entry to this builder.

Source

fn build(self) -> DenseRangeMap<K, V1, V2>

Consume this builder and return a DenseRangeMap with the same values.

Source

fn add_entry( &mut self, range: RangeInclusive<K>, value1: Option<V1>, value2: Option<V2>, ) -> Result<(), Error>

Add an entry to this DenseRangeMapBuilder.

Returns an error if range is not in strictly ascending order with respect to all previous ranges.

Auto Trait Implementations§

§

impl<K, V1, V2> Freeze for DenseRangeMapBuilder<K, V1, V2>
where K: Freeze,

§

impl<K, V1, V2> RefUnwindSafe for DenseRangeMapBuilder<K, V1, V2>

§

impl<K, V1, V2> Send for DenseRangeMapBuilder<K, V1, V2>
where K: Send, V1: Send, V2: Send,

§

impl<K, V1, V2> Sync for DenseRangeMapBuilder<K, V1, V2>
where K: Sync, V1: Sync, V2: Sync,

§

impl<K, V1, V2> Unpin for DenseRangeMapBuilder<K, V1, V2>
where K: Unpin, V1: Unpin, V2: Unpin,

§

impl<K, V1, V2> UnsafeUnpin for DenseRangeMapBuilder<K, V1, V2>
where K: UnsafeUnpin,

§

impl<K, V1, V2> UnwindSafe for DenseRangeMapBuilder<K, V1, V2>
where K: UnwindSafe, V1: UnwindSafe, V2: 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<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.