Sprout/testspr/print.hpp

74 lines
1.6 KiB
C++
Raw Normal View History

2011-12-23 11:59:33 +00:00
#ifndef TESTSPR_PRINT_HPP
#define TESTSPR_PRINT_HPP
#include <algorithm>
#include <iterator>
#include <bitset>
2011-12-23 11:59:33 +00:00
#include <iostream>
#include <sprout/container.hpp>
#include <testspr/typeinfo.hpp>
2011-12-23 11:59:33 +00:00
namespace testspr {
//
// print
//
template<typename InputIterator>
void print(InputIterator first, InputIterator last) {
std::for_each(first, last, [](typename std::iterator_traits<InputIterator>::value_type const& e){ std::cout << e << ' '; });
2011-12-23 11:59:33 +00:00
std::cout << std::endl;
}
template<typename InputRange>
void print(InputRange const& range) {
testspr::print(sprout::begin(range), sprout::end(range));
}
//
// print_ln
//
void print_ln() {
std::cout << std::endl;
}
template<typename T>
void print_ln(T const& t) {
std::cout << t << std::endl;
}
template<typename Head, typename... Tail>
void print_ln(Head const& head, Tail const&... tail) {
std::cout << head;
testspr::print_ln(tail...);
}
//
// print_bits
//
template<typename T>
void print_bits(T const& t) {
testspr::print_ln(std::bitset<sizeof(T) * 8>(t).template to_string<char>());
2011-12-23 11:59:33 +00:00
}
//
// print_typename
//
template<typename T>
void print_typename() {
testspr::print_ln(testspr::typename_of<T>());
}
//
// print_type
//
template<typename T>
void print_type() {
testspr::print_typename<testspr::id<T> >();
}
2011-12-23 11:59:33 +00:00
//
// print_hl
//
void print_hl() {
testspr::print_ln("--------------------------------------------------------------------------------");
2011-12-23 11:59:33 +00:00
}
} // namespace testspr
#endif // #ifndef TESTSPR_PRINT_HPP