Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template ostreamable

boost::type_erasure::ostreamable

Synopsis

// In header: <boost/type_erasure/operators.hpp>

template<typename Os, typename T = _self> 
struct ostreamable {

  // public static functions
  void (Os &, const T &);
};

Description

The ostreamable concept allows an any to be written to a std::ostream.

ostreamable public static functions

  1. void (Os & out, const T & arg);

PrevUpHomeNext