| 2663 | |
| 2664 | template<typename T> |
| 2665 | Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) { |
| 2666 | return Vector::ContainsMatcher<T>( comparator ); |
| 2667 | } |
| 2668 | |
| 2669 | template<typename T> |
| 2670 | Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { |
nothing calls this directly
no test coverage detected