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/).
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
9
9
10
+ ### Added
11
+
12
+ - Add ` str::contains_all ` function
13
+
10
14
## [ 3.0.3] - 2023-04-13
11
15
12
16
### Internal
Original file line number Diff line number Diff line change 143
143
//! - [`predicate::str::ends_with`]: Specified string must end with the given needle.
144
144
//! - [`predicate::str::contains`]: Specified string must contain the given needle.
145
145
//! - [`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.
146
147
//! - [`predicate::str::is_match`]: Specified string must match the given regex.
147
148
//! - [`predicate::str::is_match(...).count`]: Required number of times the match must show up.
148
149
//! - [`str_pred.trim`]: Trim whitespace before passing it to `str_pred`.
188
189
//! [`predicate::path::missing`]: prelude::predicate::path::missing()
189
190
//! [`predicate::str::contains(...).count`]: str::ContainsPredicate::count()
190
191
//! [`predicate::str::contains`]: prelude::predicate::str::contains()
192
+ //! [`predicate::str::contains_all`]: prelude::predicate::str::contains_all()
191
193
//! [`predicate::str::diff`]: prelude::predicate::str::diff()
192
194
//! [`predicate::str::ends_with`]: prelude::predicate::str::ends_with()
193
195
//! [`predicate::str::is_empty`]: prelude::predicate::str::is_empty()
You can’t perform that action at this time.
0 commit comments