xtd 0.2.0
Loading...
Searching...
No Matches
sorted_set.h
Go to the documentation of this file.
1
4#pragma once
5#include "helpers/allocator.h"
6#include "helpers/comparer.h"
7#include <set>
8
10namespace xtd {
12 namespace collections {
14 namespace generic {
35 template<typename type_t>
36 using sorted_set = std::set<type_t, helpers::comparer<type_t>, helpers::allocator<type_t>>;
37 }
38 }
39}
Contains xtd::collections::generic::helpers::allocator alias.
std::set< type_t, helpers::comparer< type_t >, helpers::allocator< type_t > > sorted_set
Represents a collection of objects that is maintained in sorted order.
Definition sorted_set.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