This file contains hidden or 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
| // u8Iter.cpp : 此檔案包含 'main' 函式。程式會於該處開始執行及結束執行。 | |
| // | |
| #include <iostream> | |
| #include <generator> | |
| #include <print> | |
| #ifdef _WIN32 | |
| #define NOMINMAX | |
| #define WIN32_LEAN_AND_MEAN |
This file contains hidden or 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 <string> | |
| #include <map> | |
| #include <iostream> | |
| #include <vector> | |
| #include <list> | |
| #include <deque> | |
| #include <random> | |
| #include <sstream> | |
| #include <Windows.h> | |
| #include <filesystem> |
This file contains hidden or 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 <thread> | |
| #include <vector> | |
| #include <memory> | |
| #include <mutex> | |
| #include <string> | |
| template<typename T> | |
| class thread_safe_wrapper | |
| { |
This file contains hidden or 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 <array> | |
| template <typename T,size_t count> | |
| class array_compare | |
| { | |
| bool operator ()(const std::array<T, count> valueA,const std::array<T, count> valueB) | |
| { | |
| for (size_t i = 0; i < count; ++i) | |
| { | |
| if (valueA[i] < valueB[i]) | |
| { |