generic_array

Module sequence

Source
Expand description

Useful traits for manipulating sequences of data stored in GenericArrays

Traits§

  • Defines GenericSequences which can be joined together, forming a larger array.
  • Defines a GenericSequence of GenericArrays which can be flattened into a single GenericArray, at zero cost.
  • Defines some sequence with an associated length and iteration capabilities.
  • Defines any GenericSequence which can be lengthened or extended by appending or prepending an element to it.
  • Defines a GenericSequence which can be shortened by removing an element at a given index.
  • Defines a GenericSequence which can be shortened by removing the first or last element from it.
  • Defines a GenericSequence that can be split into two parts at a given pivot index.
  • Defines a GenericSequence of T which can be split evenly into a sequence of GenericArrays,

Type Aliases§

  • Accessor for GenericSequence item type, which is really IntoIterator::Item