collect_rs/lib.rs
1// lib.rs : collect-rs
2
3
4// /////////////////////////////////////////////////////////
5// crate-level feature definitions
6
7
8// /////////////////////////////////////////////////////////
9// crate-level feature discrimination
10
11
12// /////////////////////////////////////////////////////////
13// imports
14
15
16pub mod collections;
17pub mod containers;
18pub(crate) mod macros;
19pub mod utils;
20
21
22// ///////////////////////////// end of file //////////////////////////// //