Struct typed_arena::Arena[][src]

pub struct Arena<T> { /* fields omitted */ }

Methods

impl<T> Arena<T>
[src]

Allocates a value in the arena, and returns a mutable reference to that value.

Uses the contents of an iterator to allocate values in the arena. Returns a mutable slice that contains these values.

Allocates space for a given number of values, but doesn't initialize it.

Returns unused space.

Auto Trait Implementations

impl<T> Send for Arena<T> where
    T: Send

impl<T> !Sync for Arena<T>