From 5f81cf4ccad437b4e966f8fcf6b43f6a9a88d007 Mon Sep 17 00:00:00 2001 From: Raphael Schaller Date: Sun, 14 Nov 2021 17:00:01 +0100 Subject: [PATCH] add docs --- docs/matchers.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/matchers.md b/docs/matchers.md index e76d8490af..24d330877d 100644 --- a/docs/matchers.md +++ b/docs/matchers.md @@ -258,6 +258,12 @@ definitions to handle generic range-like types. These are: * `SizeIs(Matcher size_matcher)` * `Contains(T&& target_element, Comparator = std::equal_to<>{})` * `Contains(Matcher element_matcher)` +* `AllMatch(Matcher element_matcher)` +* `NoneMatch(Matcher element_matcher)` +* `AnyMatch(Matcher element_matcher)` +* `AllTrue()` +* `NoneTrue()` +* `AnyTrue()` `IsEmpty` should be self-explanatory. It successfully matches objects that are empty according to either `std::empty`, or ADL-found `empty` @@ -275,6 +281,14 @@ the target element. The other variant is constructed from a matcher, in which case a range is accepted if any of its elements is accepted by the provided matcher. +`AllMatch`, `NoneMatch`, and `AnyMatch` match ranges for which either +all, none, or any of the contained elements matches the given matcher, +respectively. + +`AllTrue`, `NoneTrue`, and `AnyTrue` match ranges for which either +all, none, or any of the contained elements are `true`, respectively. +It works for ranges of `bool`s and ranges of elements (explicitly) +convertible to `bool`. ## Writing custom matchers (old style)