Last active
March 11, 2025 12:48
A useful debugging template for C++.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
#include <deque> | |
#include <map> | |
#include <unordered_map> | |
#include <set> | |
#include <unordered_set> | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::vector<T>& vec) { | |
if (vec.empty()) { | |
out << "[]"; | |
return out; | |
} | |
out << '['; | |
for (int i = 0; i < vec.size() - 1; i++) { | |
out << vec[i] << ", "; | |
} | |
return out << vec.back() << ']'; | |
} | |
template <typename T1, typename T2> | |
std::ostream& operator<<(std::ostream& out, const std::pair<T1, T2>& pair) { | |
return out << '(' << pair.first << ", " << pair.second << ')'; | |
} | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::deque<T>& deq) { | |
if (deq.empty()) { | |
out << "[]"; | |
return out; | |
} | |
out << '['; | |
for (int i = 0; i < deq.size() - 1; i++) { | |
out << deq[i] << ", "; | |
} | |
return out << deq.back() << ']'; | |
} | |
template <typename T1, typename T2> | |
std::ostream& operator<<(std::ostream& out, const std::unordered_map<T1, T2>& map) { | |
out << '{'; | |
for (auto it = map.begin(); it != map.end(); it++) { | |
std::pair<T1, T2> element = *it; | |
out << element.first << ": " << element.second; | |
if (std::next(it) != map.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
template <typename T1, typename T2> | |
std::ostream& operator<<(std::ostream& out, const std::map<T1, T2>& map) { | |
out << '{'; | |
for (auto it = map.begin(); it != map.end(); it++) { | |
std::pair<T1, T2> element = *it; | |
out << element.first << ": " << element.second; | |
if (std::next(it) != map.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::unordered_set<T>& set) { | |
out << '{'; | |
for (auto it = set.begin(); it != set.end(); it++) { | |
T element = *it; | |
out << element; | |
if (std::next(it) != set.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::multiset<T>& set) { | |
out << '{'; | |
for (auto it = set.begin(); it != set.end(); it++) { | |
T element = *it; | |
out << element; | |
if (std::next(it) != set.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::unordered_multiset<T>& set) { | |
out << '{'; | |
for (auto it = set.begin(); it != set.end(); it++) { | |
T element = *it; | |
out << element; | |
if (std::next(it) != set.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
template <typename T> | |
std::ostream& operator<<(std::ostream& out, const std::set<T>& set) { | |
out << '{'; | |
for (auto it = set.begin(); it != set.end(); it++) { | |
T element = *it; | |
out << element; | |
if (std::next(it) != set.end()) { | |
out << ", "; | |
} | |
} | |
return out << '}'; | |
} | |
// Source: https://stackoverflow.com/a/31116392/12128483 | |
template<typename Type, unsigned N, unsigned Last> | |
struct TuplePrinter { | |
static void print(std::ostream& out, const Type& value) { | |
out << std::get<N>(value) << ", "; | |
TuplePrinter<Type, N + 1, Last>::print(out, value); | |
} | |
}; | |
template<typename Type, unsigned N> | |
struct TuplePrinter<Type, N, N> { | |
static void print(std::ostream& out, const Type& value) { | |
out << std::get<N>(value); | |
} | |
}; | |
template<typename... Types> | |
std::ostream& operator<<(std::ostream& out, const std::tuple<Types...>& value) { | |
out << '('; | |
TuplePrinter<std::tuple<Types...>, 0, sizeof...(Types) - 1>::print(out, value); | |
return out << ')'; | |
} |
oh yeah i should probably include declarations first huh
Yea, by simply reordering it's possible to print deques/maps/vectors of pairs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For those wanting to be able to print vectors of pairs, simply put the vector function after the pairs. This works for me!