• Home
  • Raw
  • Download

Lines Matching full:prelude

30 //! A [prelude] is available to bring in all extension traits as well as providing
31 //! `prelude::predicate` which focuses on the 90% case of the API.
33 //! use predicates::prelude::*;
42 //! use predicates::prelude::*;
54 //! use predicates::prelude::*;
65 //! use predicates::prelude::*;
78 //! use predicates::prelude::*;
93 //! use predicates::prelude::*;
164 //! [`bytes_pred = str_pred.from_utf8()`]: prelude::PredicateStrExt::from_utf8()
165 //! [`path_pred = bytes_pred.from_file_path`]: prelude::PredicateFileContentExt::from_file_path()
166 //! [`path_pred = predicate::path::eq_file`]: prelude::predicate::path::eq_file()
172 //! [`predicate::float::is_close`]: prelude::predicate::float::is_close()
184 //! [`predicate::path::exists`]: prelude::predicate::path::exists()
185 //! [`predicate::path::is_dir`]: prelude::predicate::path::is_dir()
186 //! [`predicate::path::is_file`]: prelude::predicate::path::is_file()
187 //! [`predicate::path::is_symlink`]: prelude::predicate::path::is_symlink()
188 //! [`predicate::path::missing`]: prelude::predicate::path::missing()
190 //! [`predicate::str::contains`]: prelude::predicate::str::contains()
191 //! [`predicate::str::diff`]: prelude::predicate::str::diff()
192 //! [`predicate::str::ends_with`]: prelude::predicate::str::ends_with()
193 //! [`predicate::str::is_empty`]: prelude::predicate::str::is_empty()
195 //! [`predicate::str::is_match`]: prelude::predicate::str::is_match()
196 //! [`predicate::str::starts_with`]: prelude::predicate::str::starts_with()
198 //! [`str_pred.normalize`]: prelude::PredicateStrExt::normalize()
199 //! [`str_pred.trim`]: prelude::PredicateStrExt::trim()
204 pub mod prelude; module