refinement-types 0.3.0

Refinement types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Predicates based on strings.

pub mod bytes;
pub mod chars;
pub mod core;

pub use core::{
    Ascii, Contains, ContainsChar, EndsWith, EndsWithChar, StartsWith, StartsWithChar, Trimmed,
    TrimmedEnd, TrimmedStart,
};

#[cfg(feature = "regex")]
pub use core::Matches;