Module datazoo::sorted

source ·
Expand description

Types marking slices as being sorted.

Structs

  • Slices where all elements are key-value pairs sorted in ascending ordeorder according to key’s K: Ord.
  • slice::Iter for slices guarenteed to be sorted by key.
  • Slices where all elements are sorted in ascending ordeorder according to T: Ord.
  • slice::Iter for slices guarenteed to be sorted by item.

Type Aliases

  • A Box<[T]> where all elements are sorted in ascending ordeorder according to T: Ord.
  • A Box<[(K, V)]> where all elements are sorted in ascending ordeorder according to K.
  • A &'a [(K, V)] where all elements are sorted in ascending ordeorder according to K.
  • A Vec<(K, V)> where all elements are sorted in ascending ordeorder according to K.
  • A &'a [T] where all elements are sorted in ascending ordeorder according to T: Ord.
  • A Vec<T> where all elements are sorted in ascending ordeorder according to T: Ord.