xtd 0.2.0
queue.hpp
Go to the documentation of this file.
1
4#pragma once
7#include "icollection.hpp"
8#include "list.hpp"
9#include <deque>
10#include <queue>
11
13namespace xtd {
15 namespace collections {
17 namespace generic {
38 template<class type_t, class container_t = std::deque<type_t>>
39 using queue = std::stack<type_t, container_t>;
40 }
41 }
42}
Contains xtd::collections::generic::helpers::allocator alias.
Contains xtd::collections::generic::helpers::comparer struct.
std::stack< type_t, container_t > queue
Represents a collection of objects that is maintained in sorted order.
Definition queue.hpp:39
Contains xtd::collections::ienumerator alias.
Contains xtd::collections::generic::list <value_t> class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10