pub struct Reverse<S>(pub S);
Expand description
A reversed slice; see Slice::rev
.
Tuple Fields§
§0: S
Trait Implementations§
Source§impl<S> Slice for Reverse<S>where
S: Slice,
impl<S> Slice for Reverse<S>where
S: Slice,
Source§fn get_with<F: FnMut(&Self::Output) -> U, U>(
&self,
index: usize,
f: &mut F,
) -> Option<U>
fn get_with<F: FnMut(&Self::Output) -> U, U>( &self, index: usize, f: &mut F, ) -> Option<U>
Call a closure with the indicated element, returning the result or
None
if the index was out-of-bounds. Read moreSource§fn chain<S: Slice<Output = Self::Output>>(self, other: S) -> Chain<Self, S>where
Self: Sized,
fn chain<S: Slice<Output = Self::Output>>(self, other: S) -> Chain<Self, S>where
Self: Sized,
Chains two slices together, back-to-back. Read more
Source§fn interleave<S: Slice<Output = Self::Output>>(
self,
other: S,
) -> Interleave<Self, S>where
Self: Sized,
fn interleave<S: Slice<Output = Self::Output>>(
self,
other: S,
) -> Interleave<Self, S>where
Self: Sized,
Interleaves two slices, e.g. [A, B, A, B, …]. Read more
Source§impl<S> SliceBorrowed for Reverse<S>where
S: SliceBorrowed,
impl<S> SliceBorrowed for Reverse<S>where
S: SliceBorrowed,
Source§fn get(&self, index: usize) -> Option<&Self::Output>
fn get(&self, index: usize) -> Option<&Self::Output>
Index the slice, returning a borrowed value.
Source§fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> ⓘ
fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> ⓘ
Return an iterator over arrays covering consecutive portions of the
slice. Read more
Source§fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> ⓘ
fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> ⓘ
Return a slice/iterator over arrays covering overlapping portions of the
slice. Read more
Source§fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> ⓘ
fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> ⓘ
Return an iterator over slices covering consecutive portions of the
slice. Read more
Source§fn map<F: Fn(&Self::Output) -> R, R>(self, f: F) -> MapBorrowed<Self, F>where
Self: Sized,
fn map<F: Fn(&Self::Output) -> R, R>(self, f: F) -> MapBorrowed<Self, F>where
Self: Sized,
Call a closure on index, returning a new type. Read more
Source§impl<S> SliceMut for Reverse<S>where
S: SliceMut,
impl<S> SliceMut for Reverse<S>where
S: SliceMut,
Source§impl<S> SliceOwned for Reverse<S>where
S: SliceOwned,
impl<S> SliceOwned for Reverse<S>where
S: SliceOwned,
Source§fn get_owned(&self, index: usize) -> Option<Self::Output>
fn get_owned(&self, index: usize) -> Option<Self::Output>
Index the slice, returning an owned value.
Source§fn array_chunks<const N: usize>(self) -> ArrayChunksOwned<Self, N> ⓘwhere
Self: Sized,
fn array_chunks<const N: usize>(self) -> ArrayChunksOwned<Self, N> ⓘwhere
Self: Sized,
Return an iterator over arrays covering consecutive portions of the
slice. Read more
Source§fn array_windows<const N: usize>(self) -> ArrayWindowsOwned<Self, N> ⓘwhere
Self: Sized,
fn array_windows<const N: usize>(self) -> ArrayWindowsOwned<Self, N> ⓘwhere
Self: Sized,
Return a slice/iterator over arrays covering overlapping portions of the
slice. Read more
Source§fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> ⓘ
fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> ⓘ
Return an iterator over slices covering consecutive portions of the
slice. Read more
Source§fn map<F: Fn(Self::Output) -> R, R>(self, f: F) -> MapOwned<Self, F>where
Self: Sized,
fn map<F: Fn(Self::Output) -> R, R>(self, f: F) -> MapOwned<Self, F>where
Self: Sized,
Call a closure on index, returning a new type. Read more
Source§fn iter(self) -> IterOwned<Self> ⓘwhere
Self: Sized,
fn iter(self) -> IterOwned<Self> ⓘwhere
Self: Sized,
Creates an iterator over the slice. Read more
Source§fn try_array<const N: usize>(&self) -> Option<[Self::Output; N]>
fn try_array<const N: usize>(&self) -> Option<[Self::Output; N]>
Try to collect the slice into an array, failing if the lengths don’t
match up. Read more
impl<S> Unique for Reverse<S>where
S: Unique,
Auto Trait Implementations§
impl<S> Freeze for Reverse<S>where
S: Freeze,
impl<S> RefUnwindSafe for Reverse<S>where
S: RefUnwindSafe,
impl<S> Send for Reverse<S>where
S: Send,
impl<S> Sync for Reverse<S>where
S: Sync,
impl<S> Unpin for Reverse<S>where
S: Unpin,
impl<S> UnwindSafe for Reverse<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more