tesseract v5.3.3.20231005
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 931 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 933 of file gtest-param-util.h.

933: generators_(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 935 of file gtest-param-util.h.

935 {
936 return ParamGenerator<::std::tuple<T...>>(
937 new CartesianProductGenerator<T...>(generators_));
938 }

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