Struct snarkvm_r1cs::OptionalVec[][src]

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

Implementations

impl<T> OptionalVec<T>[src]

pub fn with_capacity(cap: usize) -> Self[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]

fn default() -> Self[src]

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

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

type Output = T

The returned type after indexing.

fn index(&self, idx: usize) -> &Self::Output[src]

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

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

fn index_mut(&mut self, idx: usize) -> &mut Self::Output[src]

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

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V