refining-length 0.1.0

Refining based on length.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Refining based on length.

#![cfg_attr(not(feature = "std"), no_std)]
#![forbid(unsafe_code)]
#![deny(missing_docs)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod length;
pub mod predicates;
pub mod prelude;