template <typename Tuple, typename Func, typename OutIter>

class TransformTupleValuesHelper

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

TransformTupleValues and its helper.

TransformTupleValuesHelper hides the internal machinery that

TransformTupleValues uses to implement a tuple traversal.

Public Methods

OutIter Run (Func f, const Tuple & t, OutIter out)

For each member of tuple 't', taken in order, evaluates '*out++ = f(t)'.

Returns the final value of 'out' in case the caller needs it.

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

Records