Struct SparseIndex

Source
pub struct SparseIndex<T> { /* private fields */ }
Expand description

An index mapping positive integer IDs to optional values.

Implementations§

Source§

impl<T> SparseIndex<T>

Source

pub fn new() -> Self

Source

pub fn with_capacity(capacity: usize) -> Self

Source

pub fn entry(&mut self, id: usize) -> Entry<'_, T>

Source

pub fn get(&self, id: usize) -> Option<&T>

Source

pub fn get_mut(&mut self, id: usize) -> Option<&mut T>

Source

pub fn set(&mut self, id: usize, val: T)

Source

pub fn contains_key(&self, id: usize) -> bool

Source

pub fn is_empty(&self) -> bool

Source

pub fn len(&self) -> usize

Source

pub fn iter(&self) -> impl DoubleEndedIterator<Item = (usize, &T)>

Source

pub fn iter_mut(&mut self) -> impl DoubleEndedIterator<Item = (usize, &mut T)>

Source

pub fn keys(&self) -> impl DoubleEndedIterator<Item = usize> + '_

Source

pub fn values(&self) -> impl DoubleEndedIterator<Item = &T>

Source

pub fn values_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut T>

Trait Implementations§

Source§

impl<T: Clone> Clone for SparseIndex<T>

Source§

fn clone(&self) -> SparseIndex<T>

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> Debug for SparseIndex<T>

Source§

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

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

impl<T> Default for SparseIndex<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> FromIterator<(usize, T)> for SparseIndex<T>

Source§

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

Creates a value from an iterator. Read more
Source§

impl<T> Index<usize> for SparseIndex<T>

Source§

type Output = T

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<T> IndexMut<usize> for SparseIndex<T>

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<T> IntoIterator for SparseIndex<T>

Source§

type Item = (usize, T)

The type of the elements being iterated over.
Source§

type IntoIter = FilterMap<Enumerate<IntoIter<Option<T>>>, fn(_: (usize, Option<T>)) -> Option<(usize, T)>>

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

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<T> Freeze for SparseIndex<T>

§

impl<T> RefUnwindSafe for SparseIndex<T>
where T: RefUnwindSafe,

§

impl<T> Send for SparseIndex<T>
where T: Send,

§

impl<T> Sync for SparseIndex<T>
where T: Sync,

§

impl<T> Unpin for SparseIndex<T>
where T: Unpin,

§

impl<T> UnwindSafe for SparseIndex<T>
where 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, dst: *mut u8)

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

impl<T> Pointable for T

§

const ALIGN: usize

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> Same for T

Source§

type Output = T

Should always be Self
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.