ryley 0.1.1

Syntax unifies programmers
Documentation
//! Module `structs`
//! 
//! A module inside `ryley` which contains wrappers for data structures
//! What can be found here?
//! - `UDSI` - Unified Data Structure Interface
//! - `Linear`
//!     - `Array`
//!     - `Vector`
//! - `Unique`
//!     - `OrdSet`
//!     - `HashSet`
//! - `Indexed`
//!     - `OrdDict`
//!     - `HashDict`

#[allow(non_snake_case)]
pub mod UDSI;

pub mod array;
pub mod vector;

pub mod ord_set;
pub mod hash_set;

pub mod ord_dict;
pub mod hash_dict;

pub mod algorithm;
pub mod ryley_slice_index;

pub mod prelude;