Vowpal Wabbit
Functions
std Namespace Reference

Functions

template<typename T >
std::ostream & operator<< (std::ostream &os, const std::vector< T > &vec)
 

Function Documentation

◆ operator<<()

template<typename T >
std::ostream& std::operator<< ( std::ostream &  os,
const std::vector< T > &  vec 
)

Definition at line 20 of file options_boost_po.h.

21 {
22  for (auto const& item : vec)
23  {
24  os << item << ", ";
25  }
26  return os;
27 }