Belle II Software development
VariadicType< T, Types > Struct Template Reference

Recursively convert multiple types to type names (used for tuples). More...

#include <PyObjConvUtils.h>

Static Public Member Functions

static std::string name ()
 type name.
 

Detailed Description

template<typename T, typename... Types>
struct Belle2::PyObjConvUtils::VariadicType< T, Types >

Recursively convert multiple types to type names (used for tuples).

Definition at line 133 of file PyObjConvUtils.h.

Member Function Documentation

◆ name()

template<typename T, typename... Types>
static std::string name ( )
inlinestatic

type name.

Definition at line 135 of file PyObjConvUtils.h.

136 {
137 return Type<T>::name() + ", " + VariadicType<Types...>::name();
138 }

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