| 2531 | // This allows the types to be inferred |
| 2532 | |
| 2533 | template <typename T> Vector::ContainsMatcher<T> Contains(std::vector<T> const &comparator) { |
| 2534 | return Vector::ContainsMatcher<T>(comparator); |
| 2535 | } |
| 2536 | |
| 2537 | template <typename T> Vector::ContainsElementMatcher<T> VectorContains(T const &comparator) { |
| 2538 | return Vector::ContainsElementMatcher<T>(comparator); |
nothing calls this directly
no test coverage detected