Xmipp  v3.23.11-Nereus
Public Member Functions | List of all members
testing::internal::CartesianProductHolder< Gen > Class Template Reference

#include <gtest-param-util.h>

Public Member Functions

 CartesianProductHolder (const Gen &... g)
 
template<typename... T>
 operator ParamGenerator<::std::tuple< T... >> () const
 

Detailed Description

template<class... Gen>
class testing::internal::CartesianProductHolder< Gen >

Definition at line 943 of file gtest-param-util.h.

Constructor & Destructor Documentation

◆ CartesianProductHolder()

template<class... Gen>
testing::internal::CartesianProductHolder< Gen >::CartesianProductHolder ( const Gen &...  g)
inline

Definition at line 945 of file gtest-param-util.h.

945 : generators_(g...) {}
doublereal * g

Member Function Documentation

◆ operator ParamGenerator<::std::tuple< T... >>()

template<class... Gen>
template<typename... T>
testing::internal::CartesianProductHolder< Gen >::operator ParamGenerator<::std::tuple< T... >> ( ) const
inline

Definition at line 947 of file gtest-param-util.h.

947  {
948  return ParamGenerator<::std::tuple<T...>>(
949  new CartesianProductGenerator<T...>(generators_));
950  }

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