Rosetta  2019.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Namespaces | Functions
stream_util.fwd.hh File Reference

Implemention of ostream operator << for various common types, forward declarations. More...

#include <utility/type_traits/has_insertion_operator.fwd.hh>
#include <utility/vectorL.fwd.hh>
#include <utility/vector0.fwd.hh>
#include <utility/vector1.fwd.hh>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <utility>
#include <type_traits>

Namespaces

 utility
 unresizable vector whose size is known at compile time, which may be allocated on the stack, and which indexes from 0.
 

Functions

template<typename T1 , typename T2 , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T1 >::value &&utility::type_traits::has_insertion_operator_s< T2 >::value >::type * = nullptr>
std::ostream & std::operator<< (std::ostream &os, std::map< T1, T2 > const &m)
 Output function for std::map object. More...
 
template<typename T , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T >::value >::type * = nullptr>
std::ostream & std::operator<< (std::ostream &os, std::list< T > const &l)
 Output function for std::list object. More...
 
template<typename T , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T >::value >::type * = nullptr>
std::ostream & std::operator<< (std::ostream &os, std::set< T > const &s)
 Output function for std::set object. More...
 
template<typename T1 , typename T2 , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T1 >::value &&utility::type_traits::has_insertion_operator_s< T2 >::value >::type * = nullptr>
std::ostream & std::operator<< (std::ostream &os, std::pair< T1, T2 > const &v)
 Output function for std::pair object. More...
 
template<class T , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T >::value >::type * = nullptr>
std::ostream & std::operator<< (std::ostream &os, std::vector< T > const &v)
 Output function for std::vector object. More...
 
template<platform::SSize L, class T , typename std::enable_if< utility::type_traits::has_insertion_operator_s< T >::value >::type * = nullptr>
std::ostream & utility::operator<< (std::ostream &os, utility::vectorL< L, T > const &v)
 Output function for utility::vectorL object. More...
 

Detailed Description

Implemention of ostream operator << for various common types, forward declarations.

Author
Sergey Lyskov