xtd - Reference Guide
0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
|
The xtd::collections namespace contains interfaces and classes that define various collections of objects, such as lists, queues, bit arrays, hash tables and dictionaries.
Namespaces | |
specialized | |
The xtd::collections::specialized namespace contains specialized and strongly-typed collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings. | |
Classes | |
class | key_not_found_exception |
The exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection. More... | |
Alias | |
using | any_pair = std::pair< std::any, std::any > |
Implements a std::pair with the key and the value strongly typed to be std::any. More... | |
using | vector_list = std::vector< std::any > |
Represents a collection of std::any. More... | |