Module core::array [] [src]

Unstable (fixed_size_array #27778)

: traits and impls are better expressed through generic integer constants

Implementations of things like Eq for fixed-length arrays up to a certain length. Eventually we should able to generalize to all lengths.

See also the array primitive type.

Reexports

use borrow::{Borrow, BorrowMut};
use clone::Clone;
use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
use convert::{AsRef, AsMut};
use default::Default;
use fmt;
use hash::{Hash, self};
use iter::IntoIterator;
use marker::{Copy, Sized, Unsize};
use option::Option;
use slice::{Iter, IterMut, SliceExt};

Traits

FixedSizeArray [Unstable]

Utility trait implemented only on arrays of fixed size