konst/
range.rs

1//! `const fn` equivalents of range methods.
2
3/// `const fn`s for comparing range for equality and ordering.
4#[cfg(feature = "cmp")]
5#[cfg_attr(feature = "docsrs", doc(cfg(feature = "cmp")))]
6pub mod cmp;
7
8pub(crate) mod one_sided_range;
9
10pub use one_sided_range::OneSidedRange;
11pub(crate) use one_sided_range::{OneSidedRangeBound, to_bound};
12
13#[cfg(feature = "iter")]
14include! {"./range/range_into_iter.rs"}