xtd 0.2.0
sorted_dictionary.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "helpers/lesser.hpp"
7#include "dictionary.hpp"
8#include <map>
9
11namespace xtd {
13 namespace collections {
15 namespace generic {
36 template<class key_t, class value_t, class lesser_t = helpers::lesser<key_t>, class allocator_t = helpers::allocator<std::pair<const key_t, value_t>>>
38 //using sorted_dictionary = std::map<key_t, value_t, lesser_t, allocator_t>;
39 }
40 }
41}
Contains xtd::collections::generic::helpers::allocator alias.
Represents a collection of keys and values.
Definition dictionary.hpp:67
Contains xtd::collections::generic::dictionary <key_t, value_t> class.
Contains xtd::collections::generic::helpers::lesser struct.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Implements a function object for performing comparisons. Unless specialised, invokes operator== on ty...
Definition equator.hpp:38