[][src]Struct typed_index_collections::TiSlice

pub struct TiSlice<K, V> {
    pub raw: [V],
    // some fields omitted
}

A dynamically-sized view into a contiguous sequence of T that only accepts keys of the type K.

TiSlice<K, V> is a wrapper around Rust primitive type slice. The struct mirrors the stable API of Rust slice and forwards to it as much as possible.

TiSlice<K, V> uses K instead of usize for element indices. It also uses Range, RangeTo, RangeFrom, RangeInclusive and RangeToInclusive range types with K indices for get-methods and index expressions. The RangeFull trait is not currently supported.

TiSlice<K, V> require the index to implement From<usize> and Into<usize> traits. Their implementation can be easily done with derive_more crate and #[derive(From, Into)].

There are zero-cost conversions available between types and references:

Added methods:

  • from_ref - Converts a &[V] into a &TiSlice<K, V>.
  • from_mut - Converts a &mut [V] into a &mut TiSlice<K, V>.
  • keys - Returns an iterator over all keys.
  • next_key - Returns the index of the next slice element to be appended and at the same time number of elements in the slice of type K.
  • first_key - Returns the first slice element index of type K, or None if the slice is empty.
  • first_key_value - Returns the first slice element index of type K and the element itself, or None if the slice is empty.
  • first_key_value_mut - Returns the first slice element index of type K and a mutable reference to the element itself, or None if the slice is empty.
  • last_key - Returns the last slice element index of type K, or None if the slice is empty.
  • last_key_value - Returns the last slice element index of type K and the element itself, or None if the slice is empty.
  • last_key_value_mut - Returns the last slice element index of type K and a mutable reference to the element itself, or None if the slice is empty.
  • iter_enumerated - Returns an iterator over all key-value pairs. It acts like self.iter().enumerate(), but use K instead of usize for iteration indices.
  • iter_mut_enumerated - Returns an iterator over all key-value pairs, with mutable references to the values. It acts like self.iter_mut().enumerate(), but use K instead of usize for iteration indices.
  • position - Searches for an element in an iterator, returning its index of type K. It acts like self.iter().position(...), but instead of usize it returns index of type K.
  • rposition - Searches for an element in an iterator from the right, returning its index of type K. It acts like self.iter().rposition(...), but instead of usize it returns index of type K.

Example

use typed_index_collections::TiSlice;
use derive_more::{From, Into};

#[derive(From, Into)]
struct FooId(usize);

let mut foos_raw = [1, 2, 5, 8];
let foos: &mut TiSlice<FooId, usize> = TiSlice::from_mut(&mut foos_raw);
foos[FooId(2)] = 4;
assert_eq!(foos[FooId(2)], 4);

Fields

raw: [V]

Raw slice property

Implementations

impl<K, V> TiSlice<K, V>[src]

pub fn from_ref(raw: &[V]) -> &Self[src]

Converts a &[V] into a &TiSlice<K, V>.

Example

pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);

pub fn from_mut(raw: &mut [V]) -> &mut Self[src]

Converts a &mut [V] into a &mut TiSlice<K, V>.

Example

pub struct Id(usize);
let slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut [1, 2, 4]);

pub fn len(&self) -> usize[src]

Returns the number of elements in the slice.

See slice::len for more details.

pub fn next_key(&self) -> K where
    K: From<usize>, 
[src]

Returns the index of the next slice element to be appended and at the same time number of elements in the slice of type K.

Example

#[derive(Eq, Debug, From, Into, PartialEq)]
pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
assert_eq!(slice.next_key(), Id(3));

pub const fn is_empty(&self) -> bool[src]

Returns true if the slice has a length of 0.

See slice::is_empty for more details.

pub fn keys(&self) -> TiSliceKeys<K> where
    K: From<usize>, 
[src]

Returns an iterator over all keys.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
let mut iterator = slice.keys();
assert_eq!(iterator.next(), Some(Id(0)));
assert_eq!(iterator.next(), Some(Id(1)));
assert_eq!(iterator.next(), Some(Id(2)));
assert_eq!(iterator.next(), None);

pub fn first(&self) -> Option<&V>[src]

Returns the first element of the slice, or None if it is empty.

See slice::first for more details.

pub fn first_mut(&mut self) -> Option<&mut V>[src]

Returns a mutable reference to the first element of the slice, or None if it is empty.

See slice::first_mut for more details.

pub fn first_key(&self) -> Option<K> where
    K: From<usize>, 
[src]

Returns the first slice element index of type K, or None if the slice is empty.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[]);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
assert_eq!(empty_slice.first_key(), None);
assert_eq!(slice.first_key(), Some(Id(0)));

pub fn first_key_value(&self) -> Option<(K, &V)> where
    K: From<usize>, 
[src]

Returns the first slice element index of type K and the element itself, or None if the slice is empty.

See slice::first for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[]);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
assert_eq!(empty_slice.first_key_value(), None);
assert_eq!(slice.first_key_value(), Some((Id(0), &1)));

pub fn first_key_value_mut(&mut self) -> Option<(K, &mut V)> where
    K: From<usize>, 
[src]

Returns the first slice element index of type K and a mutable reference to the element itself, or None if the slice is empty.

See slice::first_mut for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut []);
let mut array = [1, 2, 4];
let slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut array);
assert_eq!(empty_slice.first_key_value_mut(), None);
assert_eq!(slice.first_key_value_mut(), Some((Id(0), &mut 1)));
*slice.first_key_value_mut().unwrap().1 = 123;
assert_eq!(slice.raw, [123, 2, 4]);

pub fn split_first(&self) -> Option<(&V, &TiSlice<K, V>)>[src]

Returns the first and all the rest of the elements of the slice, or None if it is empty.

See slice::split_first for more details.

pub fn split_first_mut(&mut self) -> Option<(&mut V, &mut TiSlice<K, V>)>[src]

Returns the first and all the rest of the elements of the slice, or None if it is empty.

See slice::split_first_mut for more details.

pub fn split_last(&self) -> Option<(&V, &TiSlice<K, V>)>[src]

Returns the last and all the rest of the elements of the slice, or None if it is empty.

See slice::split_last for more details.

pub fn split_last_mut(&mut self) -> Option<(&mut V, &mut TiSlice<K, V>)>[src]

Returns the last and all the rest of the elements of the slice, or None if it is empty.

See slice::split_last_mut for more details.

pub fn last(&self) -> Option<&V>[src]

Returns the last element of the slice of type K, or None if it is empty.

See slice::last for more details.

pub fn last_mut(&mut self) -> Option<&mut V>[src]

Returns a mutable reference to the last item in the slice.

See slice::last_mut for more details.

pub fn last_key(&self) -> Option<K> where
    K: From<usize>, 
[src]

Returns the last slice element index of type K, or None if the slice is empty.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[]);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
assert_eq!(empty_slice.last_key(), None);
assert_eq!(slice.last_key(), Some(Id(2)));

pub fn last_key_value(&self) -> Option<(K, &V)> where
    K: From<usize>, 
[src]

Returns the last slice element index of type K and the element itself, or None if the slice is empty.

See slice::last for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[]);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
assert_eq!(empty_slice.last_key_value(), None);
assert_eq!(slice.last_key_value(), Some((Id(2), &4)));

pub fn last_key_value_mut(&mut self) -> Option<(K, &mut V)> where
    K: From<usize>, 
[src]

Returns the last slice element index of type K and a mutable reference to the element itself, or None if the slice is empty.

See slice::last_mut for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let empty_slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut []);
let mut array = [1, 2, 4];
let slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut array);
assert_eq!(empty_slice.last_key_value_mut(), None);
assert_eq!(slice.last_key_value_mut(), Some((Id(2), &mut 4)));
*slice.last_key_value_mut().unwrap().1 = 123;
assert_eq!(slice.raw, [1, 2, 123]);

pub fn get<I>(&self, index: I) -> Option<&I::Output> where
    I: TiSliceIndex<K, V>, 
[src]

Returns a reference to an element or subslice depending on the type of index or None if the index is out of bounds.

See slice::get for more details.

pub fn get_mut<I>(&mut self, index: I) -> Option<&mut I::Output> where
    I: TiSliceIndex<K, V>, 
[src]

Returns a mutable reference to an element or subslice depending on the type of index or None if the index is out of bounds.

See slice::get_mut for more details.

pub unsafe fn get_unchecked<I>(&self, index: I) -> &I::Output where
    I: TiSliceIndex<K, V>, 
[src]

Returns a reference to an element or subslice depending on the type of index, without doing bounds checking.

This is generally not recommended, use with caution! Calling this method with an out-of-bounds index is undefined behavior even if the resulting reference is not used. For a safe alternative see get.

See slice::get_unchecked for more details.

pub unsafe fn get_unchecked_mut<I>(&mut self, index: I) -> &mut I::Output where
    I: TiSliceIndex<K, V>, 
[src]

Returns a mutable reference to an element or subslice depending on the type of index, without doing bounds checking.

This is generally not recommended, use with caution! Calling this method with an out-of-bounds index is undefined behavior even if the resulting reference is not used. For a safe alternative see get_mut.

See slice::get_unchecked_mut for more details.

pub const fn as_ptr(&self) -> *const V[src]

Returns a raw pointer to the slice's buffer.

See slice::as_ptr for more details.

pub fn as_mut_ptr(&mut self) -> *mut V[src]

Returns an unsafe mutable reference to the slice's buffer.

See slice::as_mut_ptr for more details.

pub fn swap(&mut self, a: K, b: K) where
    usize: From<K>, 
[src]

Swaps two elements in the slice.

See slice::swap for more details.

pub fn reverse(&mut self)[src]

Reverses the order of elements in the slice, in place.

See slice::reverse for more details.

pub fn iter(&self) -> Iter<'_, V>[src]

Returns an iterator over the slice.

See slice::iter for more details.

pub fn iter_enumerated(&self) -> TiEnumerated<Iter<'_, V>, K, &V> where
    K: From<usize>, 
[src]

Returns an iterator over all key-value pairs.

It acts like self.iter().enumerate(), but use K instead of usize for iteration indices.

See slice::iter for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4]);
let mut iterator = slice.iter_enumerated();
assert_eq!(iterator.next(), Some((Id(0), &1)));
assert_eq!(iterator.next(), Some((Id(1), &2)));
assert_eq!(iterator.next(), Some((Id(2), &4)));
assert_eq!(iterator.next(), None);

pub fn iter_mut(&mut self) -> IterMut<'_, V>[src]

Returns an iterator that allows modifying each value.

See slice::iter_mut for more details.

pub fn iter_mut_enumerated(&mut self) -> TiEnumerated<IterMut<'_, V>, K, &mut V> where
    K: From<usize>, 
[src]

Returns an iterator over all key-value pairs, with mutable references to the values.

It acts like self.iter_mut().enumerate(), but use K instead of usize for iteration indices.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let mut array = [1, 2, 4];
let slice: &mut TiSlice<Id, usize> = TiSlice::from_mut(&mut array);
for (key, value) in slice.iter_mut_enumerated() {
    *value += key.0;
}
assert_eq!(array, [1, 3, 6]);

pub fn position<P>(&self, predicate: P) -> Option<K> where
    K: From<usize>,
    P: FnMut(&V) -> bool
[src]

Searches for an element in an iterator, returning its index of type K.

It acts like self.iter().position(...), but instead of usize it returns index of type K.

See slice::iter and Iterator::position for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4, 2, 1]);
assert_eq!(slice.position(|&value| value == 1), Some(Id(0)));
assert_eq!(slice.position(|&value| value == 2), Some(Id(1)));
assert_eq!(slice.position(|&value| value == 3), None);
assert_eq!(slice.position(|&value| value == 4), Some(Id(2)));

pub fn rposition<P>(&self, predicate: P) -> Option<K> where
    K: From<usize>,
    P: FnMut(&V) -> bool
[src]

Searches for an element in an iterator from the right, returning its index of type K.

It acts like self.iter().rposition(...), but instead of usize it returns index of type K.

See slice::iter and Iterator::position for more details.

Example

#[derive(Debug, Eq, From, Into, PartialEq)]
pub struct Id(usize);
let slice: &TiSlice<Id, usize> = TiSlice::from_ref(&[1, 2, 4, 2, 1]);
assert_eq!(slice.rposition(|&value| value == 1), Some(Id(4)));
assert_eq!(slice.rposition(|&value| value == 2), Some(Id(3)));
assert_eq!(slice.rposition(|&value| value == 3), None);
assert_eq!(slice.rposition(|&value| value == 4), Some(Id(2)));

pub fn windows(&self, size: usize) -> TiSliceRefMap<Windows<'_, V>, K, V>[src]

Returns an iterator over all contiguous windows of length size. The windows overlap. If the slice is shorter than size, the iterator returns no values.

See slice::windows for more details.

pub fn chunks(&self, chunk_size: usize) -> TiSliceRefMap<Chunks<'_, V>, K, V>[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the beginning of the slice.

See slice::chunks for more details.

pub fn chunks_mut(
    &mut self,
    chunk_size: usize
) -> TiSliceMutMap<ChunksMut<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the beginning of the slice.

See slice::chunks_mut for more details.

pub fn chunks_exact(
    &self,
    chunk_size: usize
) -> TiSliceRefMap<ChunksExact<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the beginning of the slice.

See slice::chunks_exact for more details.

pub fn chunks_exact_mut(
    &mut self,
    chunk_size: usize
) -> TiSliceMutMap<ChunksExactMut<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the beginning of the slice.

See slice::chunks_exact_mut for more details.

pub fn rchunks(&self, chunk_size: usize) -> TiSliceRefMap<RChunks<'_, V>, K, V>[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the end of the slice.

See slice::rchunks for more details.

pub fn rchunks_mut(
    &mut self,
    chunk_size: usize
) -> TiSliceMutMap<RChunksMut<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the end of the slice.

See slice::rchunks_mut for more details.

pub fn rchunks_exact(
    &self,
    chunk_size: usize
) -> TiSliceRefMap<RChunksExact<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the end of the slice.

See slice::rchunks_exact for more details.

pub fn rchunks_exact_mut(
    &mut self,
    chunk_size: usize
) -> TiSliceMutMap<RChunksExactMut<'_, V>, K, V>
[src]

Returns an iterator over chunk_size elements of the slice at a time, starting at the end of the slice.

See slice::rchunks_exact_mut for more details.

pub fn split_at(&self, mid: K) -> (&Self, &Self) where
    usize: From<K>, 
[src]

Divides one slice into two at an index.

See slice::split_at for more details.

pub fn split_at_mut(&mut self, mid: K) -> (&mut Self, &mut Self) where
    usize: From<K>, 
[src]

Divides one mutable slice into two at an index.

See slice::split_at_mut for more details.

pub fn split<F>(&self, pred: F) -> TiSliceRefMap<Split<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred. The matched element is not contained in the subslices.

See slice::split for more details.

pub fn split_mut<F>(
    &mut self,
    pred: F
) -> TiSliceMutMap<SplitMut<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over mutable subslices separated by elements that match pred. The matched element is not contained in the subslices.

See slice::split_mut for more details.

pub fn rsplit<F>(&self, pred: F) -> TiSliceRefMap<RSplit<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred, starting at the end of the slice and working backwards. The matched element is not contained in the subslices.

See slice::rsplit for more details.

pub fn rsplit_mut<F>(
    &mut self,
    pred: F
) -> TiSliceMutMap<RSplitMut<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over mutable subslices separated by elements that match pred, starting at the end of the slice and working backwards. The matched element is not contained in the subslices.

See slice::rsplit_mut for more details.

pub fn splitn<F>(
    &self,
    n: usize,
    pred: F
) -> TiSliceRefMap<SplitN<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred, limited to returning at most n items. The matched element is not contained in the subslices.

See slice::splitn for more details.

pub fn splitn_mut<F>(
    &mut self,
    n: usize,
    pred: F
) -> TiSliceMutMap<SplitNMut<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred, limited to returning at most n items. The matched element is not contained in the subslices.

See slice::splitn_mut for more details.

pub fn rsplitn<F>(
    &self,
    n: usize,
    pred: F
) -> TiSliceRefMap<RSplitN<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred limited to returning at most n items. This starts at the end of the slice and works backwards. The matched element is not contained in the subslices.

See slice::rsplitn for more details.

pub fn rsplitn_mut<F>(
    &mut self,
    n: usize,
    pred: F
) -> TiSliceMutMap<RSplitNMut<'_, V, F>, K, V> where
    F: FnMut(&V) -> bool
[src]

Returns an iterator over subslices separated by elements that match pred limited to returning at most n items. This starts at the end of the slice and works backwards. The matched element is not contained in the subslices.

See slice::rsplitn_mut for more details.

pub fn contains(&self, x: &V) -> bool where
    V: PartialEq
[src]

Returns true if the slice contains an element with the given value.

See slice::contains for more details.

pub fn starts_with(&self, needle: &Self) -> bool where
    V: PartialEq
[src]

Returns true if needle is a prefix of the slice.

See slice::starts_with for more details.

pub fn ends_with(&self, needle: &Self) -> bool where
    V: PartialEq
[src]

Returns true if needle is a suffix of the slice.

See slice::ends_with for more details.

Binary searches this sorted slice for a given element.

See slice::binary_search for more details.

pub fn binary_search_by<'a, F>(&'a self, f: F) -> Result<K, K> where
    F: FnMut(&'a V) -> Ordering,
    K: From<usize>, 
[src]

Binary searches this sorted slice with a comparator function.

See slice::binary_search_by for more details.

pub fn binary_search_by_key<'a, B, F>(&'a self, b: &B, f: F) -> Result<K, K> where
    F: FnMut(&'a V) -> B,
    B: Ord,
    K: From<usize>, 
[src]

Binary searches this sorted slice with a key extraction function.

See slice::binary_search_by_key for more details.

pub fn sort_unstable(&mut self) where
    V: Ord
[src]

Sorts the slice, but may not preserve the order of equal elements.

See slice::sort_unstable for more details.

pub fn sort_unstable_by<F>(&mut self, compare: F) where
    F: FnMut(&V, &V) -> Ordering
[src]

Sorts the slice with a comparator function, but may not preserve the order of equal elements.

See slice::sort_unstable_by for more details.

pub fn sort_unstable_by_key<K2, F>(&mut self, f: F) where
    F: FnMut(&V) -> K2,
    K2: Ord
[src]

Sorts the slice with a key extraction function, but may not preserve the order of equal elements.

See slice::sort_unstable_by_key for more details.

pub fn rotate_left(&mut self, mid: K) where
    usize: From<K>, 
[src]

Rotates the slice in-place such that the first mid elements of the slice move to the end while the last self.next_key() - mid elements move to the front. After calling rotate_left, the element previously at index mid will become the first element in the slice.

See slice::rotate_left for more details.

pub fn rotate_right(&mut self, k: K) where
    usize: From<K>, 
[src]

Rotates the slice in-place such that the first self.next_key() - k elements of the slice move to the end while the last k elements move to the front. After calling rotate_right, the element previously at index self.next_key() - k will become the first element in the slice.

See slice::rotate_right for more details.

pub fn clone_from_slice(&mut self, src: &Self) where
    V: Clone
[src]

Copies the elements from src into self.

See slice::clone_from_slice for more details.

pub fn copy_from_slice(&mut self, src: &Self) where
    V: Copy
[src]

Copies all elements from src into self, using a memcpy.

See slice::copy_from_slice for more details.

pub fn copy_within<R>(&mut self, src: R, dest: K) where
    R: TiRangeBounds<K>,
    V: Copy,
    usize: From<K>, 
[src]

Copies elements from one part of the slice to another part of itself, using a memmove.

See slice::copy_within for more details.

pub fn swap_with_slice(&mut self, other: &mut Self)[src]

Swaps all elements in self with those in other.

See slice::swap_with_slice for more details.

pub unsafe fn align_to<U>(&self) -> (&Self, &TiSlice<K, U>, &Self)[src]

Transmute the slice to a slice of another type, ensuring alignment of the types is maintained.

See slice::align_to for more details.

pub unsafe fn align_to_mut<U>(
    &mut self
) -> (&mut Self, &mut TiSlice<K, U>, &mut Self)
[src]

Transmute the slice to a slice of another type, ensuring alignment of the types is maintained.

See slice::align_to_mut for more details.

impl<K> TiSlice<K, u8>[src]

pub fn is_ascii(&self) -> bool[src]

Checks if all bytes in this slice are within the ASCII range.

See slice::is_ascii for more details.

pub fn eq_ignore_ascii_case(&self, other: &Self) -> bool[src]

Checks that two slices are an ASCII case-insensitive match.

See slice::eq_ignore_ascii_case for more details.

pub fn make_ascii_uppercase(&mut self)[src]

Converts this slice to its ASCII upper case equivalent in-place.

See slice::make_ascii_uppercase for more details.

pub fn make_ascii_lowercase(&mut self)[src]

Converts this slice to its ASCII lower case equivalent in-place.

See slice::make_ascii_lowercase for more details.

impl<K, V> TiSlice<K, V>[src]

pub fn sort(&mut self) where
    V: Ord
[src]

Sorts the slice.

See slice::sort for more details.

pub fn sort_by<F>(&mut self, compare: F) where
    F: FnMut(&V, &V) -> Ordering
[src]

Sorts the slice with a comparator function.

See slice::sort_by for more details.

pub fn sort_by_key<K2, F>(&mut self, f: F) where
    F: FnMut(&V) -> K2,
    K2: Ord
[src]

Sorts the slice with a key extraction function.

See slice::sort_by_key for more details.

pub fn sort_by_cached_key<K2, F>(&mut self, f: F) where
    F: FnMut(&V) -> K2,
    K2: Ord
[src]

Sorts the slice with a key extraction function.

See slice::sort_by_cached_key for more details.

pub fn to_vec(&self) -> TiVec<K, V> where
    V: Clone
[src]

Copies self into a new TiVec.

See slice::to_vec for more details.

pub fn into_vec(self: Box<Self>) -> TiVec<K, V>[src]

Converts self into a vector without clones or allocation.

See slice::into_vec for more details.

pub fn repeat(&self, n: usize) -> TiVec<K, V> where
    V: Copy
[src]

Creates a vector by repeating a slice n times.

See slice::repeat for more details.

pub fn concat<Item: ?Sized>(&self) -> Self::Output where
    Self: Concat<Item>, 
[src]

Flattens a slice of T into a single value Self::Output.

See slice::concat for more details.

pub fn join<Separator>(&self, sep: Separator) -> Self::Output where
    Self: Join<Separator>, 
[src]

Flattens a slice of T into a single value Self::Output, placing a given separator between each.

See slice::join for more details.

impl<K> TiSlice<K, u8>[src]

pub fn to_ascii_uppercase(&self) -> TiVec<K, u8>[src]

Returns a vector containing a copy of this slice where each byte is mapped to its ASCII upper case equivalent.

See slice::to_ascii_uppercase for more details.

pub fn to_ascii_lowercase(&self) -> TiVec<K, u8>[src]

Returns a vector containing a copy of this slice where each byte is mapped to its ASCII lower case equivalent.

See slice::to_ascii_lowercase for more details.

Trait Implementations

impl<K, V> AsMut<[V]> for TiSlice<K, V>[src]

impl<K, V> AsMut<TiSlice<K, V>> for TiSlice<K, V>[src]

impl<K, V> AsMut<TiSlice<K, V>> for [V][src]

impl<K, V> AsMut<TiSlice<K, V>> for TiVec<K, V>[src]

impl<K, V> AsRef<[V]> for TiSlice<K, V>[src]

impl<K, V> AsRef<TiSlice<K, V>> for TiSlice<K, V>[src]

impl<K, V> AsRef<TiSlice<K, V>> for [V][src]

impl<K, V> AsRef<TiSlice<K, V>> for TiVec<K, V>[src]

impl<K, V> Borrow<TiSlice<K, V>> for TiVec<K, V>[src]

impl<K, V> BorrowMut<TiSlice<K, V>> for TiVec<K, V>[src]

impl<K, V> Debug for TiSlice<K, V> where
    K: Debug + From<usize>,
    V: Debug
[src]

impl<K, V, '_> Default for &'_ TiSlice<K, V>[src]

impl<K, V, '_> Default for &'_ mut TiSlice<K, V>[src]

impl<K, V> Eq for TiSlice<K, V> where
    V: Eq
[src]

impl<K, V: Copy, '_> From<&'_ TiSlice<K, V>> for Box<TiSlice<K, V>>[src]

impl<K, V> Hash for TiSlice<K, V> where
    V: Hash
[src]

impl<I, K, V> Index<I> for TiSlice<K, V> where
    I: TiSliceIndex<K, V>, 
[src]

type Output = I::Output

The returned type after indexing.

impl<I, K, V> IndexMut<I> for TiSlice<K, V> where
    I: TiSliceIndex<K, V>, 
[src]

impl<'a, K, V> IntoIterator for &'a TiSlice<K, V>[src]

type Item = &'a V

The type of the elements being iterated over.

type IntoIter = Iter<'a, V>

Which kind of iterator are we turning this into?

impl<'a, K, V> IntoIterator for &'a mut TiSlice<K, V>[src]

type Item = &'a mut V

The type of the elements being iterated over.

type IntoIter = IterMut<'a, V>

Which kind of iterator are we turning this into?

impl<K, V> Ord for TiSlice<K, V> where
    V: Ord
[src]

impl<'a, K, A, B> PartialEq<&'a TiSlice<K, B>> for TiVec<K, A> where
    A: PartialEq<B>, 
[src]

impl<'a, K, A, B> PartialEq<&'a mut TiSlice<K, B>> for TiVec<K, A> where
    A: PartialEq<B>, 
[src]

impl<K, A, B> PartialEq<TiSlice<K, B>> for TiSlice<K, A> where
    A: PartialEq<B>, 
[src]

impl<K, V> PartialOrd<TiSlice<K, V>> for TiSlice<K, V> where
    V: PartialOrd<V>, 
[src]

impl<K, V: Serialize> Serialize for TiSlice<K, V>[src]

impl<K, V: Clone> ToOwned for TiSlice<K, V>[src]

type Owned = TiVec<K, V>

The resulting type after obtaining ownership.

Auto Trait Implementations

impl<K, V> RefUnwindSafe for TiSlice<K, V> where
    V: RefUnwindSafe

impl<K, V> Send for TiSlice<K, V> where
    V: Send

impl<K, V> Sync for TiSlice<K, V> where
    V: Sync

impl<K, V> Unpin for TiSlice<K, V> where
    V: Unpin

impl<K, V> UnwindSafe for TiSlice<K, V> where
    V: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.