Added full bank extraction

This commit is contained in:
KiritoDv
2023-09-15 20:46:06 -06:00
parent 50b6c6f65b
commit fc7bf4c6ec
13 changed files with 2107 additions and 211 deletions
+8
View File
@@ -44,6 +44,14 @@ std::vector<T> keys(std::unordered_map<T, X> const &map) {
}
return result;
}
template<typename T, typename X>
std::vector<T> keys(std::map<T, X> const &map) {
std::vector<T> result;
for (auto const &pair: map) {
result.push_back(pair.first);
}
return result;
}
}
template <typename T>