14 print(
const T& t, std::ostream& os) {
26 print(
const std::vector<T>& test, std::ostream& os) {
28 typename std::vector<T>::const_iterator
29 it, begin = test.begin(), end = test.end();
30 for (it=begin; it != end; ++it) {
40 template <
class T,
class U>
46 print(
const std::map<T, U>& test, std::ostream& os) {
48 typename std::map<T,U>::const_iterator
49 it, begin = test.begin(), end = test.end();
50 for (it=begin; it != end; ++it) {
static void print(const std::map< T, U > &test, std::ostream &os)
static void print(const T &t, std::ostream &os)
static void print(const std::vector< T > &test, std::ostream &os)