| 3639 | |
| 3640 | template<typename T> |
| 3641 | Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) { |
| 3642 | return Vector::ContainsMatcher<T>( comparator ); |
| 3643 | } |
| 3644 | |
| 3645 | template<typename T> |
| 3646 | Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { |
nothing calls this directly
no test coverage detected