Electroneum
testing::internal::ElementsAreArrayMatcher< T > Class Template Reference

#include <gmock-matchers.h>

Public Member Functions

template<typename Iter >
 ElementsAreArrayMatcher (Iter first, Iter last)
 
template<typename Container >
 operator Matcher< Container > () const
 

Detailed Description

template<typename T>
class testing::internal::ElementsAreArrayMatcher< T >

Definition at line 3525 of file gmock-matchers.h.

Constructor & Destructor Documentation

◆ ElementsAreArrayMatcher()

template<typename T>
template<typename Iter >
testing::internal::ElementsAreArrayMatcher< T >::ElementsAreArrayMatcher ( Iter  first,
Iter  last 
)
inline

Definition at line 3528 of file gmock-matchers.h.

3528 : matchers_(first, last) {}

Member Function Documentation

◆ operator Matcher< Container >()

template<typename T>
template<typename Container >
testing::internal::ElementsAreArrayMatcher< T >::operator Matcher< Container > ( ) const
inline

Definition at line 3531 of file gmock-matchers.h.

3531  {
3532  return MakeMatcher(new ElementsAreMatcherImpl<Container>(
3533  matchers_.begin(), matchers_.end()));
3534  }
Matcher< T > MakeMatcher(const MatcherInterface< T > *impl)
Here is the call graph for this function:

The documentation for this class was generated from the following file: