Arduino List Library  3.0.1
The Ultimate Collection of Lists
List.hpp
Go to the documentation of this file.
1 
43 #ifndef LIST_HPP
44 #define LIST_HPP
45 
46 #include "SingleLinkedList.hpp"
47 
53 template<typename T>
54 class List : public SingleLinkedList<T> {
55  public:
64  explicit List<T>(bool mutableList = false)
65  : SingleLinkedList<T>(mutableList) {}
66 };
67 
68 #endif// LIST_HPP
A list with the most basic implementation as a single-linked list.
Definition: List.hpp:54
Implementation of a single-linked list.
Definition: SingleLinkedList.hpp:37