xtd 0.2.0
linked_list.hpp
Go to the documentation of this file.
1
4#pragma once
7#include "list.hpp"
8#include <forward_list>
9
11namespace xtd {
13 namespace collections {
15 namespace generic {
31 template<class type_t, class allocator_t = xtd::collections::generic::helpers::allocator<type_t>>
32 using linked_list = std::forward_list<type_t, allocator_t>;
33 }
34 }
35}
Contains xtd::collections::generic::helpers::allocator alias.
Contains xtd::collections::generic::helpers::comparer struct.
std::forward_list< type_t, allocator_t > linked_list
Represents a doubly linked list.
Definition linked_list.hpp:32
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