CMS 3D CMS Logo

List of all members | Static Public Member Functions
std::tuple_printer< Type, N, Last > Struct Template Reference

#include <Utilities.h>

Static Public Member Functions

static void print (std::ostream &out, const Type &value)
 

Detailed Description

template<typename Type, unsigned N, unsigned Last>
struct std::tuple_printer< Type, N, Last >

Definition at line 22 of file Utilities.h.

Member Function Documentation

template<typename Type , unsigned N, unsigned Last>
static void std::tuple_printer< Type, N, Last >::print ( std::ostream &  out,
const Type &  value 
)
inlinestatic

Definition at line 24 of file Utilities.h.

References relativeConstraints::value.

Referenced by std::operator<<().

24  {
25  out << std::get<N>(value) << ", ";
27  }
Definition: value.py:1
static void print(std::ostream &out, const Type &value)
Definition: Utilities.h:24