1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*!

A lightweight two-dimensional wrapper around a `Vec`.

*/

#![cfg_attr(not(any(test, doctest)), no_std)]

#![warn(missing_docs)]
#![warn(rust_2018_idioms)]
#![warn(missing_debug_implementations)]

mod iter;
mod view;
mod ops;
mod toodee;
mod flattenexact;

#[cfg(feature = "sort")] mod sort;
#[cfg(feature = "sort")] mod tests_sort;
#[cfg(feature = "sort")] pub use crate::sort::*;

#[cfg(feature = "translate")] mod translate;
#[cfg(feature = "translate")] mod tests_translate;
#[cfg(feature = "translate")] pub use crate::translate::*;

#[cfg(feature = "copy")] mod copy;
#[cfg(feature = "copy")] mod tests_copy;
#[cfg(feature = "copy")] pub use crate::copy::*;

mod tests;
mod tests_iter;

pub use crate::iter::*;
pub use crate::view::*;
pub use crate::ops::*;
pub use crate::toodee::*;
pub use crate::flattenexact::*;