| 3498 | public: |
| 3499 | |
| 3500 | PredicateMatcher(std::function<bool(T const&)> const& elem, std::string const& descr) |
| 3501 | :m_predicate(std::move(elem)), |
| 3502 | m_description(Detail::finalizeDescription(descr)) |
| 3503 | {} |
| 3504 | |
| 3505 | bool match( T const& item ) const override { |
| 3506 | return m_predicate(item); |
nothing calls this directly
no outgoing calls
no test coverage detected