//! Prelude for `ryley::struct`
//!
//! It includes
//! - `Linear`: `Array` and `Vector`
//! - `Unique`: `OrdSet` and `HashSet`
//! - `Indexed`: `OrdDict` and `HashDict`
//! - macros for data structure initialisation
//! - all important traits from `UDSI`
pub use UDSI::;
pub use Vector;
pub use Array;
pub use OrdSet;
pub use HashSet;
pub use OrdDict;
pub use HashDict;
pub use crate::;