|
| template<class Key , class Value , class... Ts> |
| using | Map = std::unordered_map< Key, Value, Ts... > |
| | A collection of key-value pairs. More...
|
| |
| template<class Key , class Value , class... Ts> |
| using | SortedMap = std::map< Key, Value, Ts... > |
| | A sorted collection of key-value pairs. More...
|
| |
| template<class Value , class... Ts> |
| using | Set = std::unordered_set< Value, Ts... > |
| | A set of unique values. More...
|
| |
| template<class Value , class... Ts> |
| using | SortedSet = std::set< Value, Ts... > |
| | A sorted set of unique values. More...
|
| |
| using | uchar = unsigned char |
| | Unsigned character type. More...
|
| |
| using | ushort = unsigned short |
| | Unsigned short integer. More...
|
| |
| using | uint = unsigned int |
| | Unsigned integer. More...
|
| |
| using | ulong = unsigned long |
| | Unsigned long integer. More...
|
| |
| using | ullong = unsigned long long |
| | Unsigned long long integer. More...
|
| |
| using | usize = std::size_t |
| | Unsigned size type. More...
|
| |
| using | u8 = uint8_t |
| | 8-bit unsigned integer More...
|
| |
| using | u16 = uint16_t |
| | 16-bit unsigned integer More...
|
| |
| using | u32 = uint32_t |
| | 32-bit unsigned integer More...
|
| |
| using | u64 = uint64_t |
| | 64-bit unsigned integer More...
|
| |
| using | i8 = int8_t |
| | 8-bit integer More...
|
| |
| using | i16 = int16_t |
| | 16-bit integer More...
|
| |
| using | i32 = int32_t |
| | 32-bit integer More...
|
| |
| using | i64 = int64_t |
| | 64-bit integer More...
|
| |
| using | c16 = char16_t |
| | 16-bit character More...
|
| |
| using | c32 = char32_t |
| | 32-bit character More...
|
| |
| using | ldouble = long double |
| | Long double. More...
|
| |
| using | nanoseconds = std::chrono::nanoseconds |
| | Duration in nanoseconds. More...
|
| |
| using | microseconds = std::chrono::microseconds |
| | Duration in microseconds. More...
|
| |
| using | milliseconds = std::chrono::milliseconds |
| | Duration in milliseconds. More...
|
| |
| using | seconds = std::chrono::seconds |
| | Duration in seconds. More...
|
| |
| using | minutes = std::chrono::minutes |
| | Duration in minutes. More...
|
| |
| using | hours = std::chrono::hours |
| | Duration in hours. More...
|
| |
Namespace for all the type aliases.