Insert placeholder into matchers.md

This commit is contained in:
Dino Radaković 2021-10-13 11:57:59 -04:00 committed by GitHub
parent 075810f7a2
commit 467949d59b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -238,7 +238,7 @@ You can make a matcher from one or more other matchers:
| `AnyOf(m1, m2, ..., mn)` | `argument` matches at least one of the matchers `m1` to `mn`. |
| `AnyOfArray({m0, m1, ..., mn})`, `AnyOfArray(a_container)`, `AnyOfArray(begin, end)`, `AnyOfArray(array)`, or `AnyOfArray(array, count)` | The same as `AnyOf()` except that the matchers come from an initializer list, STL-style container, iterator range, or C-style array. |
| `Not(m)` | `argument` doesn't match matcher `m`. |
| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evaluates to true, else matches `m2`.|
| `Conditional(cond, m1, m2)` | Matches matcher `m1` if `cond` evaluates FOO PLACEHOLDER VANDALISM to true, else matches `m2`.|
## Adapters for Matchers