Crate vec_split

Source

Modules§

accessors
fast_accessor
Despite the name, FastAccessor is not much less safe than SafeAccessor. However, it does not require T: Sized, or I: usize.
safe_accessor

Macros§

impl_accessors
Macro to easily implement the Accessor types for your own array types.

Traits§

RawVector
Trait used to show that a vector-like type is guaranteed to have a consistent and usable-for-pointers memory layout.
SizedVectorArray
Trait to be implemented for all types that are arrays of some sort, contain only vectors, and have a way to access their internal pointers. Used to allow the use of FastAccessors.
Vector
Trait to be implemented for all types that are vector-like. For example, arrays, tuples, vecs, etc.
VectorArray
Trait to be implemented for all types that are arrays of some sort and contain only vectors.