# | Line 24 | Line 24 | public: | |
---|---|---|
24 | bool contains(const Type& value) { return front.contains(value, &back); } | |
25 | void removeFirst(const Type& value) { front.remove(value, &back); } | |
26 | void removeLast(const Type& value) { back.remove(value, &front, false); } | |
27 | + | Iterator<Type> iterator(void) { return Iterator<Type>(&front, &back); } |
28 | }; | |
29 | ||
30 | template<typename Type> |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |