xtd 0.2.0
stack.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 <stack>
11
13namespace xtd {
15 namespace collections {
17 namespace generic {
33 template<class type_t, class container_t = std::deque<type_t>>
34 using stack = std::stack<type_t, container_t>;
35 }
36 }
37}
Contains xtd::collections::generic::helpers::allocator alias.
Contains xtd::collections::generic::helpers::comparer struct.
std::stack< type_t, container_t > stack
Represents a variable size last-in-first-out (LIFO) collection of instances of the same specified typ...
Definition stack.hpp:34
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