//! `stack`
//!
//! `stack` is a submodule containing algorithms for stack operations
/// The `is_consecutive` algorithm
pub use is_consecutive;
/// TheĀ `is_sorted` algorithm
pub use is_sorted;
/// The `longest_path` algorithm
pub use longest_path;
/// The `OrderedStack` implementation
pub use OrderedStack;
/// The `remove_min` algorithm
pub use remove_min;
/// The `simplify_path` algorithm
pub use simplify_path;