xtd 0.2.0
sorted_list.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "helpers/lesser.hpp"
7#include "sorted_dictionary.hpp"
8
10namespace xtd {
12 namespace collections {
14 namespace generic {
35 template<class key_t, class value_t, class allocator_t = helpers::allocator<std::pair<const key_t, value_t>>>
37 }
38 }
39}
Contains xtd::collections::generic::helpers::allocator alias.
std::map< key_t, value_t, lesser_t, allocator_t > sorted_dictionary
Represents a collection of key/value pairs that are sorted on the key.
Definition sorted_dictionary.hpp:38
sorted_dictionary< key_t, value_t, helpers::lesser< key_t >, allocator_t > sorted_list
Represents a collection of key/value pairs that are sorted by the keys and are accessible by key and ...
Definition sorted_list.hpp:36
Contains xtd::collections::generic::helpers::lesser struct.
The xtd::collections::generic namespace contains interfaces and classes that define generic collectio...
Definition comparer.hpp:16
The xtd::collections namespace contains interfaces and classes that define various collections of obj...
Definition any_pair.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::collections::generic::sorted_dictionary <key_t, value_t> class.