xtd 0.2.0
Loading...
Searching...
No Matches
sorted_dictionary.h
Go to the documentation of this file.
1
4#pragma once
5#include "helpers/allocator.h"
6#include "helpers/comparer.h"
7#include <map>
8
10namespace xtd {
12 namespace collections {
14 namespace generic {
35 template<typename key_t, typename value_t>
36 using sorted_dictionary = std::map<key_t, value_t, helpers::comparer<key_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, helpers::comparer< key_t >, helpers::allocator< std::pair< const key_t, value_t > > > sorted_dictionary
Represents a collection of key/value pairs that are sorted on the key.
Definition sorted_dictionary.h:36
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.h:35
Contains xtd::collections::generic::helpers::comparer struct.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10