1 2 3 4 5 6 7 8 9 10 11
//! `stack` //! //! `stack` is a submodule containing algorithms for stack operations /// The `is_consecutive` algorithm pub mod is_consecutive; pub use is_consecutive::is_consecutive; /// TheĀ `is_sorted` algorithm pub mod is_sorted; pub use is_sorted::is_sorted;