pub struct DedupArena<Idx, T> { /* private fields */ }
Expand description

A deduplicating arena allocator with a given index and entity type.

For performance reasons the arena cannot deallocate single entities.

Implementations§

source§

impl<Idx, T> DedupArena<Idx, T>

source

pub fn new() -> Self

Creates a new empty deduplicating entity arena.

source

pub fn len(&self) -> usize

Returns the allocated number of entities.

source

pub fn is_empty(&self) -> bool

Returns true if the Arena has not yet allocated entities.

source

pub fn clear(&mut self)

Clears all entities from the arena.

source

pub fn iter(&self) -> Iter<'_, Idx, T>

Returns an iterator over the shared reference of the Arena entities.

source

pub fn iter_mut(&mut self) -> IterMut<'_, Idx, T>

Returns an iterator over the exclusive reference of the Arena entities.

source§

impl<Idx, T> DedupArena<Idx, T>
where Idx: ArenaIndex, T: Ord + Clone,

source

pub fn alloc(&mut self, entity: T) -> Idx

Allocates a new entity and returns its index.

§Note

Only allocates if the entity does not already exist in the DedupArena.

source

pub fn get(&self, index: Idx) -> Option<&T>

Returns a shared reference to the entity at the given index if any.

source

pub fn get_mut(&mut self, index: Idx) -> Option<&mut T>

Returns an exclusive reference to the entity at the given index if any.

Trait Implementations§

source§

impl<Idx: Debug, T: Debug> Debug for DedupArena<Idx, T>

source§

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

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

impl<Idx, T> Default for DedupArena<Idx, T>

source§

fn default() -> Self

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

impl<Idx, T> FromIterator<T> for DedupArena<Idx, T>
where Idx: ArenaIndex, T: Clone + Ord,

source§

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

Creates a value from an iterator. Read more
source§

impl<Idx, T> Index<Idx> for DedupArena<Idx, T>
where Idx: ArenaIndex,

§

type Output = T

The returned type after indexing.
source§

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

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

impl<Idx, T> IndexMut<Idx> for DedupArena<Idx, T>
where Idx: ArenaIndex,

source§

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

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

impl<'a, Idx, T> IntoIterator for &'a DedupArena<Idx, T>
where Idx: ArenaIndex,

§

type Item = (Idx, &'a T)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, Idx, 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
source§

impl<'a, Idx, T> IntoIterator for &'a mut DedupArena<Idx, T>
where Idx: ArenaIndex,

§

type Item = (Idx, &'a mut T)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a, Idx, 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
source§

impl<Idx, T> PartialEq for DedupArena<Idx, T>
where T: PartialEq,

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Idx, T> Eq for DedupArena<Idx, T>
where T: Eq,

Auto Trait Implementations§

§

impl<Idx, T> Freeze for DedupArena<Idx, T>

§

impl<Idx, T> RefUnwindSafe for DedupArena<Idx, T>

§

impl<Idx, T> Send for DedupArena<Idx, T>
where Idx: Send, T: Send,

§

impl<Idx, T> Sync for DedupArena<Idx, T>
where Idx: Sync, T: Sync + Send,

§

impl<Idx, T> Unpin for DedupArena<Idx, T>
where Idx: Unpin, T: Unpin,

§

impl<Idx, T> UnwindSafe for DedupArena<Idx, T>

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

§

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

§

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.