Enum cap_rand::seq::index::IndexVec [−][src]
pub enum IndexVec {
// some variants omitted
}Expand description
A vector of indices.
Multiple internal representations are possible.
Implementations
Return the value at the given index.
(Note: we cannot implement std::ops::Index because of lifetime
restrictions.)
Return result as a Vec<usize>. Conversion may or may not be trivial.
pub fn iter(&self) -> IndexVecIter<'_>ⓘNotable traits for IndexVecIter<'a>
impl<'a> Iterator for IndexVecIter<'a> type Item = usize;
pub fn iter(&self) -> IndexVecIter<'_>ⓘNotable traits for IndexVecIter<'a>
impl<'a> Iterator for IndexVecIter<'a> type Item = usize;Iterate over the indices as a sequence of usize values
Trait Implementations
pub fn into_iter(self) -> IndexVecIntoIterⓘNotable traits for IndexVecIntoIter
impl Iterator for IndexVecIntoIter type Item = usize;
pub fn into_iter(self) -> IndexVecIntoIterⓘNotable traits for IndexVecIntoIter
impl Iterator for IndexVecIntoIter type Item = usize;Convert into an iterator over the indices as a sequence of usize values
type IntoIter = IndexVecIntoIter
type IntoIter = IndexVecIntoIterWhich kind of iterator are we turning this into?
Auto Trait Implementations
impl RefUnwindSafe for IndexVecimpl UnwindSafe for IndexVecBlanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V