rust_extra/arrays/mod.rs
1// This file is part of rust-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rust-extra/master/COPYRIGHT. No part of rust-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016 The developers of rust-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rust-extra/master/COPYRIGHT.
3
4
5use ::core::cmp::Ordering;
6use ::core::fmt::Debug;
7use ::core::fmt::Formatter;
8use ::core::fmt::Result;
9use ::core::hash::Hash;
10use ::core::hash::Hasher;
11use ::core::slice::Iter;
12use ::core::slice::IterMut;
13
14
15include!("Array.rs");
16include!("Array16.rs");
17include!("Array30.rs");
18include!("Array32.rs");
19include!("Array40.rs");
20include!("Array46.rs");
21include!("Array52.rs");
22include!("Array64.rs");
23include!("Array80.rs");
24include!("Array128.rs");
25include!("Array256.rs");
26include!("Array512.rs");
27include!("Array1024.rs");