Struct snarkvm_wasm::OptionalVec [−][src]
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]
pub fn default() -> OptionalVec<T>[src]
impl<T> Index<usize> for OptionalVec<T>[src]
type Output = T
The returned type after indexing.
pub fn index(&self, idx: usize) -> &<OptionalVec<T> as Index<usize>>::Output[src]
impl<T> IndexMut<usize> for OptionalVec<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for OptionalVec<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for OptionalVec<T> where
T: Send,
T: Send,
impl<T> Sync for OptionalVec<T> where
T: Sync,
T: Sync,
impl<T> Unpin for OptionalVec<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for OptionalVec<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
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]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
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]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,