Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod problems;
#[cfg(feature = "thin-vec")]
mod thin_vec;
#[cfg(not(feature = "thin-vec"))]
mod vec;

#[allow(unused_imports)]
pub use problems::*;

#[cfg(feature = "thin-vec")]
#[allow(unused_imports)]
pub use thin_vec::*;

#[cfg(not(feature = "thin-vec"))]
#[allow(unused_imports)]
pub use vec::*;