xtd 0.2.0
Loading...
Searching...
No Matches
xtd::collections::specialized Namespace Reference

Definition

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.

Alias

using string_collection = xtd::collections::generic::list< xtd::string >
 Represents a collection of strings.
 
using string_dictionary = xtd::collections::generic::dictionary< xtd::string, xtd::string >
 Represents a xtd::collections::generic::dictionary with the key and the value strongly typed to be strings.
 
using string_key_value_pair = xtd::collections::generic::key_value_pair< xtd::string, xtd::string >
 Implements a std::pair with the key and the value strongly typed to be strings.
 
using string_map = string_dictionary
 Represents a std::map with the key and the value strongly typed to be strings.
 
using string_pair = string_key_value_pair
 Implements a std::pair with the key and the value strongly typed to be strings.
 
using string_vector = string_collection
 Represents a collection of strings.