GraphLibrary  0.0.1
A simple library that implements various graph algorithms.
 All Classes Namespaces Files Functions Variables Typedefs Macros
PrintContainer.hpp File Reference

Go to the source code of this file.

Namespaces

 gl
 
 gl::io
 

Functions

Prints all contents of the given GraphLib container.
Parameters
osStream that will be used for output
rhsContainer that will be printed
template<class container >
void gl::io::printContainer (const container &rhs)
 Unspecialized template to throw errors. More...
 
template<class idx_t >
void gl::io::printContainer (const std::list< idx_t > &rhs)
 Prints all elements of an std::list. More...
 
template<class idx_t >
void gl::io::printContainer (const std::vector< idx_t > &rhs)
 Prints all elements of an std::vector. More...
 
template<class idx_t >
void gl::io::printContainer (const std::deque< idx_t > &rhs)
 Prints all elements of an std::queue. More...
 
template<class idx_t >
void gl::io::printContainer (const std::stack< idx_t > &rhs)
 Prints all elements of an std::stack. More...