mirror of
https://github.com/chipsenkbeil/distant.git
synced 2024-11-11 01:10:30 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
use predicates::prelude::*;
|
|
|
|
mod reader;
|
|
pub use reader::ThreadedReader;
|
|
|
|
/// Produces a regex predicate using the given string
|
|
pub fn regex_pred(s: &str) -> predicates::str::RegexPredicate {
|
|
predicate::str::is_match(s).unwrap()
|
|
}
|