Struct snarkvm_wasm::OptionalVec[][src]

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

Implementations

impl<T> OptionalVec<T>[src]

pub fn with_capacity(cap: usize) -> OptionalVec<T>[src]

Creates a new OptionalVec with the given underlying capacity.

pub fn insert(&mut self, elem: T) -> usize[src]

Inserts a new value either into the first existing hole or extending the vector of values, i.e. pushing it to its end.

pub fn next_idx(&self) -> usize[src]

Returns the index of the next value inserted into the OptionalVec.

pub fn remove(&mut self, idx: usize) -> T[src]

Removes a value at the specified index; assumes that the index points to an existing value that is a Some(T) (i.e. not a hole).

pub fn iter(&self) -> impl Iterator<Item = &T>[src]

Iterates over all the Some(T) values in the list.

pub fn len(&self) -> usize[src]

Returns the number of Some(T) values.

pub fn is_empty(&self) -> bool[src]

Returns true if there are no Some(T) values

Trait Implementations

impl<T> Default for OptionalVec<T>[src]

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

type Output = T

The returned type after indexing.

impl<T> IndexMut<usize> for OptionalVec<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for OptionalVec<T> where
    T: RefUnwindSafe

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

impl<T> Sync for OptionalVec<T> where
    T: Sync

impl<T> Unpin for OptionalVec<T> where
    T: Unpin

impl<T> UnwindSafe for OptionalVec<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,