File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77<!-- next-header -->
88## [ Unreleased] - ReleaseDate
99
10+ ### Added
11+
12+ - Add ` str::contains_all ` function
13+
1014## [ 3.0.3] - 2023-04-13
1115
1216### Internal
Original file line number Diff line number Diff line change 143143//! - [`predicate::str::ends_with`]: Specified string must end with the given needle.
144144//! - [`predicate::str::contains`]: Specified string must contain the given needle.
145145//! - [`predicate::str::contains(...).count`]: Required number of times the needle must show up.
146+ //! - [`predicate::str::contains_all`]: Specified string must contain all given needles.
146147//! - [`predicate::str::is_match`]: Specified string must match the given regex.
147148//! - [`predicate::str::is_match(...).count`]: Required number of times the match must show up.
148149//! - [`str_pred.trim`]: Trim whitespace before passing it to `str_pred`.
188189//! [`predicate::path::missing`]: prelude::predicate::path::missing()
189190//! [`predicate::str::contains(...).count`]: str::ContainsPredicate::count()
190191//! [`predicate::str::contains`]: prelude::predicate::str::contains()
192+ //! [`predicate::str::contains_all`]: prelude::predicate::str::contains_all()
191193//! [`predicate::str::diff`]: prelude::predicate::str::diff()
192194//! [`predicate::str::ends_with`]: prelude::predicate::str::ends_with()
193195//! [`predicate::str::is_empty`]: prelude::predicate::str::is_empty()
You can’t perform that action at this time.
0 commit comments