1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
pub use crate::boolean::PredicateBooleanExt;
pub use crate::boxed::PredicateBoxExt;
pub use crate::name::PredicateNameExt;
pub use crate::path::PredicateFileContentExt;
pub use crate::str::PredicateStrExt;
pub use crate::Predicate;
pub mod predicate {
pub use crate::constant::{always, never};
pub use crate::function::function;
pub use crate::iter::{in_hash, in_iter};
pub use crate::ord::{eq, ge, gt, le, lt, ne};
pub mod str {
pub use crate::str::is_empty;
pub use crate::str::{contains, ends_with, starts_with};
#[cfg(feature = "diff")]
pub use crate::str::diff;
#[cfg(feature = "regex")]
pub use crate::str::is_match;
}
pub mod path {
pub use crate::path::eq_file;
pub use crate::path::{exists, missing};
pub use crate::path::{is_dir, is_file, is_symlink};
}
pub mod float {
#[cfg(feature = "float-cmp")]
pub use crate::float::is_close;
}
}