Struct slice_utils::Chain

source ·
pub struct Chain<S1, S2>(pub S1, pub S2);
Expand description

Two chained slices; see Slice::chain.

Tuple Fields§

§0: S1§1: S2

Trait Implementations§

source§

impl<T, S, S2> Debug for Chain<S, S2>
where T: Debug, S: Slice<Output = T>, S2: Slice<Output = T>,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, S, S2> Index<usize> for Chain<S, S2>
where S: SliceBorrowed<Output = T>, S2: SliceBorrowed<Output = T>,

§

type Output = <Chain<S, S2> as Slice>::Output

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

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

impl<T, S, S2> IndexMut<usize> for Chain<S, S2>
where S: SliceBorrowed<Output = T> + SliceMut, S2: SliceBorrowed<Output = T> + SliceMut,

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

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

impl<T, S, O, V, S2> PartialEq<O> for Chain<S, S2>
where V: PartialEq<T>, S: SliceOwned<Output = T>, O: Slice<Output = V>, S2: SliceOwned<Output = T>,

source§

fn eq(&self, other: &O) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<S1, S2> Slice for Chain<S1, S2>
where S1: Slice, S2: Slice<Output = S1::Output>,

§

type Output = <S1 as Slice>::Output

The type this slice returns; analagous to Index::Output.
source§

fn len(&self) -> usize

Returns the length of the slice.
source§

fn get_with<W: FnMut(&Self::Output) -> R, R>( &self, index: usize, f: &mut W ) -> Option<R>

Call a closure with the indicated element, returning the result or None if the index was out-of-bounds. Read more
source§

fn is_empty(&self) -> bool

Returns whether or not the slice is empty. Read more
source§

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 cycle(self) -> Cycle<Self>
where Self: Sized,

Cycles the slice infinitely. Read more
source§

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§

fn rev(self) -> Reverse<Self>
where Self: Sized,

Reverses the slice. Read more
source§

fn slice<R: RangeBounds<usize>>(self, range: R) -> Option<SliceOf<Self>>
where Self: Sized,

Create a sub-slice of the slice. Read more
source§

fn split(&self, at: usize) -> Option<(SliceOf<&Self>, SliceOf<&Self>)>

Returns (&self[..at], &self[at..]). Returns None if at is out-of-bounds. Read more
source§

impl<S1, S2> SliceBorrowed for Chain<S1, S2>
where S1: SliceBorrowed, S2: SliceBorrowed<Output = S1::Output>,

source§

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>

Return an iterator over arrays covering consecutive portions of the slice. Read more
source§

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>

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,

Call a closure on index, returning a new type. Read more
source§

fn iter(&self) -> IterBorrowed<'_, Self>

Creates an iterator over the slice. Read more
source§

fn windows(&self, size: usize) -> WindowsBorrowed<'_, Self>

Return a slice/iterator over slices covering overlapping portions of the slice. Read more
source§

impl<S1, S2> SliceMut for Chain<S1, S2>
where S1: SliceMut, S2: SliceMut<Output = S1::Output>,

source§

fn get_mut(&mut self, index: usize) -> Option<&mut Self::Output>

Index the slice, returning a mutably borrowed value.
source§

impl<S1, S2> SliceOwned for Chain<S1, S2>
where S1: SliceOwned, S2: SliceOwned<Output = S1::Output>,

source§

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,

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,

Return a slice/iterator over arrays covering overlapping portions of the slice. Read more
source§

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,

Call a closure on index, returning a new type. Read more
source§

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]>

Try to collect the slice into an array, failing if the lengths don’t match up. Read more
source§

fn windows(&self, size: usize) -> WindowsOwned<'_, Self>

Return a slice/iterator over slices covering overlapping portions of the slice. Read more
source§

fn zip<O: SliceOwned>(self, other: O) -> Zip<Self, O>
where Self: Sized,

Zip two slices into a single slice, where indexing returns a tuple of their items. Read more

Auto Trait Implementations§

§

impl<S1, S2> Freeze for Chain<S1, S2>
where S1: Freeze, S2: Freeze,

§

impl<S1, S2> RefUnwindSafe for Chain<S1, S2>

§

impl<S1, S2> Send for Chain<S1, S2>
where S1: Send, S2: Send,

§

impl<S1, S2> Sync for Chain<S1, S2>
where S1: Sync, S2: Sync,

§

impl<S1, S2> Unpin for Chain<S1, S2>
where S1: Unpin, S2: Unpin,

§

impl<S1, S2> UnwindSafe for Chain<S1, S2>
where S1: UnwindSafe, S2: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.