DGtal  1.4.beta
DGtal::Shortcuts< TKSpace >::ValueWriter< Value > Struct Template Reference

#include <DGtal/helpers/Shortcuts.h>

Public Member Functions

void operator() (std::ostream &output, const Value &v)
 
void operator() (std::ostream &output, const std::vector< Value > &vv)
 

Detailed Description

template<typename TKSpace>
template<typename Value>
struct DGtal::Shortcuts< TKSpace >::ValueWriter< Value >

Definition at line 3051 of file Shortcuts.h.

Member Function Documentation

◆ operator()() [1/2]

template<typename TKSpace >
template<typename Value >
void DGtal::Shortcuts< TKSpace >::ValueWriter< Value >::operator() ( std::ostream &  output,
const std::vector< Value > &  vv 
)
inline

Definition at line 3056 of file Shortcuts.h.

3057  {
3058  for ( auto&& v : vv ) output << " " << v;
3059  }

◆ operator()() [2/2]

template<typename TKSpace >
template<typename Value >
void DGtal::Shortcuts< TKSpace >::ValueWriter< Value >::operator() ( std::ostream &  output,
const Value v 
)
inline

Definition at line 3052 of file Shortcuts.h.

3053  {
3054  output << " " << v;
3055  }

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