| 3737 | |
| 3738 | template<typename T, typename AllocComp = std::allocator<T>, typename AllocMatch = AllocComp> |
| 3739 | Vector::ContainsMatcher<T, AllocComp, AllocMatch> Contains( std::vector<T, AllocComp> const& comparator ) { |
| 3740 | return Vector::ContainsMatcher<T, AllocComp, AllocMatch>( comparator ); |
| 3741 | } |
| 3742 | |
| 3743 | template<typename T, typename Alloc = std::allocator<T>> |
| 3744 | Vector::ContainsElementMatcher<T, Alloc> VectorContains( T const& comparator ) { |
no test coverage detected