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