add is_unordered_set concept

This commit is contained in:
chatlanin
2023-08-20 10:07:06 +03:00
parent 9805cdf6cf
commit c722357baf
5 changed files with 31 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
#include <set>
#include <unordered_set>
#include "hack/logger/logger.hpp"
@@ -9,6 +10,8 @@ auto main(int argc, char *argv[]) -> int
std::vector<int> v { 1, 2, 3 };
hack::log()(v, s);
std::unordered_set<int> us { 1, 2, 3 };
hack::log()(v, s, us);
}