Doxygen
|
#include <vector>
#include <string>
#include <string_view>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <stack>
Go to the source code of this file.
Typedefs | |
using | StringUnorderedMap = std::unordered_map<std::string,std::string> |
using | StringUnorderedSet = std::unordered_set<std::string> |
using | StringMap = std::map<std::string,std::string> |
using | StringSet = std::set<std::string> |
using | StringMultiSet = std::multiset<std::string> |
using | StringVector = std::vector<std::string> |
using | StringViewVector = std::vector<std::string_view> |
using | BoolStack = std::stack<bool> |
using | BoolVector = std::vector<bool> |
using | IntMap = std::map<std::string,int> |
using | IntVector = std::vector<int> |
using BoolStack = std::stack<bool> |
Definition at line 35 of file containers.h.
using BoolVector = std::vector<bool> |
Definition at line 36 of file containers.h.
using IntMap = std::map<std::string,int> |
Definition at line 37 of file containers.h.
using IntVector = std::vector<int> |
Definition at line 38 of file containers.h.
using StringMap = std::map<std::string,std::string> |
Definition at line 30 of file containers.h.
using StringMultiSet = std::multiset<std::string> |
Definition at line 32 of file containers.h.
using StringSet = std::set<std::string> |
Definition at line 31 of file containers.h.
using StringUnorderedMap = std::unordered_map<std::string,std::string> |
Definition at line 28 of file containers.h.
using StringUnorderedSet = std::unordered_set<std::string> |
Definition at line 29 of file containers.h.
using StringVector = std::vector<std::string> |
Definition at line 33 of file containers.h.
using StringViewVector = std::vector<std::string_view> |
Definition at line 34 of file containers.h.