Struct convec::AoVec [] [src]

pub struct AoVec<T>(_);

Append only concurrent vector

Methods

impl<T> AoVec<T>
[src]

[src]

Creates a new AoVece

[src]

Returns the length of the ConStack.

[src]

Push an element to the AoVec, returning its index

[src]

Get value at index idx

[src]

Get value at index idx, without checking bounds

Trait Implementations

impl<T> Index<usize> for AoVec<T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.