Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::internal::pair_getters Namespace Reference

Functions

template<typename T >
T::first_type & First (T &x, Rank0)
 
template<typename T >
const T::first_type & First (const T &x, Rank0)
 
template<typename T >
T::second_type & Second (T &x, Rank0)
 
template<typename T >
const T::second_type & Second (const T &x, Rank0)
 

Function Documentation

◆ First() [1/2]

template<typename T >
const T::first_type & testing::internal::pair_getters::First ( const T & x,
Rank0  )

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

3271 {
3272 return x.first;
3273}

◆ First() [2/2]

template<typename T >
T::first_type & testing::internal::pair_getters::First ( T & x,
Rank0  )

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

3267 { // NOLINT
3268 return x.first;
3269}
Here is the caller graph for this function:

◆ Second() [1/2]

template<typename T >
const T::second_type & testing::internal::pair_getters::Second ( const T & x,
Rank0  )

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

3280 {
3281 return x.second;
3282}

◆ Second() [2/2]

template<typename T >
T::second_type & testing::internal::pair_getters::Second ( T & x,
Rank0  )

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

3276 { // NOLINT
3277 return x.second;
3278}
Here is the caller graph for this function: