xtd 0.2.0
sorted_set.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "helpers/lesser.hpp"
7#include "iset.hpp"
8#include <set>
9
11namespace xtd {
13 namespace collections {
15 namespace generic {
36 template<class type_t, class lesser_t = xtd::collections::generic::helpers::lesser<type_t>, class allocator_t = xtd::collections::generic::helpers::allocator<type_t>>
37 using sorted_set = std::set<type_t, lesser_t, allocator_t>;
38 }
39 }
40}
Contains xtd::collections::generic::helpers::allocator alias.
std::set< type_t, lesser_t, allocator_t > sorted_set
Represents a collection of objects that is maintained in sorted order.
Definition sorted_set.hpp:37
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.hpp:38
Contains xtd::collections::generic::iset <type_t> interface.
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