vstd::array

Trait ArrayAdditionalSpecFns

Source
pub trait ArrayAdditionalSpecFns<T>: View<V = Seq<T>> {
    // Required method
    spec fn spec_index(&self, i: int) -> T;
}

Required Methods§

Source

spec fn spec_index(&self, i: int) -> T

recommends
0 <= i < self.view().len(),

Implementations on Foreign Types§

Source§

impl<T, const N: usize> ArrayAdditionalSpecFns<T> for [T; N]

Source§

open spec fn spec_index(&self, i: int) -> T

{ self.view().index(i) }

Implementors§