The Gaudi Framework  v30r3 (a5ef0a68)
Gaudi::Utils::TuplePrinter< Tuple, N > Struct Template Reference

#include <GaudiKernel/ToStream.h>

Static Public Member Functions

static std::ostreamtoStream (const Tuple &t, std::ostream &s)
 

Detailed Description

template<class Tuple, std::size_t N>
struct Gaudi::Utils::TuplePrinter< Tuple, N >

Definition at line 319 of file ToStream.h.

Member Function Documentation

template<class Tuple , std::size_t N>
static std::ostream& Gaudi::Utils::TuplePrinter< Tuple, N >::toStream ( const Tuple &  t,
std::ostream s 
)
inlinestatic

Definition at line 320 of file ToStream.h.

321  {
322  TuplePrinter<Tuple, N - 1>::toStream( t, s ) << " , ";
323  return Gaudi::Utils::toStream( std::get<N - 1>( t ), s );
324  }
std::ostream & toStream(ITERATOR first, ITERATOR last, std::ostream &s, const std::string &open, const std::string &close, const std::string &delim)
the helper function to print the sequence
Definition: ToStream.h:303
static std::ostream & toStream(const Tuple &t, std::ostream &s)
Definition: ToStream.h:320

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