flex_array 0.2.5

A `#[no_std]` flexible array much like std::Vec but with custom indices and length and capacity types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains types that are use by `FlexArr` The important types are the `LengthType`
//! and `FlexArrErr`.
//!
//! `LengthType` is a trait that is used for letting you specify the type of the length,
//! capacity, and indexing operations.
//!
//! `FlexArrErr` is type that that used to indicate an error during a `FlexArr` operation.
//!
//! `FlexArrResult` is a type alias for `Result<T, FlexArrErr>`
mod errors;
mod len_type;

pub use errors::*;
pub use len_type::LengthType;