template <typename TupleMatcher, typename RhsContainer>

class PointwiseMatcher

Defined at line 2646 of file ../../third_party/googletest/src/googlemock/include/gmock/gmock-matchers.h

Implements Pointwise(tuple_matcher, rhs_container). tuple_matcher

must be able to be safely cast to Matcher

<std

::tuple

<const

T1

&

, const

T2

&

> >, where T1 and T2 are the types of elements in the LHS

container and the RHS container respectively.

Public Methods

void PointwiseMatcher<TupleMatcher, RhsContainer> (const TupleMatcher & tuple_matcher, const RhsContainer & rhs)

Like ContainerEq, we make a copy of rhs in case the elements in

it are modified after this matcher is created.

Defined at line 2663 of file ../../third_party/googletest/src/googlemock/include/gmock/gmock-matchers.h

template <typename LhsContainer>
Matcher<LhsContainer> operator testing::Matcher<type-parameter-1-0> ()

Defined at line 2667 of file ../../third_party/googletest/src/googlemock/include/gmock/gmock-matchers.h

Records