Struct polars_utils::arena::Arena
source · pub struct Arena<T> { /* private fields */ }
Implementations§
source§impl<T> Arena<T>
impl<T> Arena<T>
Simple Arena implementation Allocates memory and stores item in a Vec. Only deallocates when being dropped itself.
pub fn version(&self) -> u32
pub fn add(&mut self, val: T) -> Node
pub fn pop(&mut self) -> Option<T>
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn new() -> Self
pub fn with_capacity(cap: usize) -> Self
pub fn get_node(&self, val: &T) -> Option<Node>
pub fn swap(&mut self, idx_a: Node, idx_b: Node)
pub fn get(&self, idx: Node) -> &T
sourcepub unsafe fn get_unchecked(&self, idx: Node) -> &T
pub unsafe fn get_unchecked(&self, idx: Node) -> &T
§Safety
Doesn’t do any bound checks
pub fn get_mut(&mut self, idx: Node) -> &mut T
sourcepub fn get_many_mut<const N: usize>(
&mut self,
indices: [Node; N]
) -> [&mut T; N]
pub fn get_many_mut<const N: usize>( &mut self, indices: [Node; N] ) -> [&mut T; N]
Get mutable references to several items of the Arena
The idxs
is asserted to contain unique Node
elements which are preferably (not
necessarily) in order.
pub fn replace(&mut self, idx: Node, val: T) -> T
pub fn clear(&mut self)
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Arena<T>
impl<T> RefUnwindSafe for Arena<T>where
T: RefUnwindSafe,
impl<T> Send for Arena<T>where
T: Send,
impl<T> Sync for Arena<T>where
T: Sync,
impl<T> Unpin for Arena<T>where
T: Unpin,
impl<T> UnwindSafe for Arena<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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