konst 0.4.3

Const equivalents of std features: comparison, destructuring, iteration, and parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `const fn` equivalents of range methods.

/// `const fn`s for comparing range for equality and ordering.
#[cfg(feature = "cmp")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "cmp")))]
pub mod cmp;

pub(crate) mod one_sided_range;

pub use one_sided_range::OneSidedRange;
pub(crate) use one_sided_range::{OneSidedRangeBound, to_bound};

#[cfg(feature = "iter")]
include! {"./range/range_into_iter.rs"}