refining-length 0.1.0

Refining based on length.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The `refining-length` prelude.

#[doc(inline)]
pub use crate::{
    length::HasLength,
    predicates::{
        LengthClosed, LengthClosedOpen, LengthDivisible, LengthEqual, LengthEven, LengthGreater,
        LengthGreaterOrEqual, LengthLess, LengthLessOrEqual, LengthModulo, LengthNonZero,
        LengthNotEqual, LengthOdd, LengthOpen, LengthOpenClosed, LengthZero,
    },
};