|
@@ -262,11 +262,17 @@ public:
|
|
|
{
|
|
|
return iterator_type(head->next);
|
|
|
}
|
|
|
+
|
|
|
iterator_type end() noexcept
|
|
|
{
|
|
|
return iterator_type(tail);
|
|
|
}
|
|
|
|
|
|
+ bool empty(void) const noexcept
|
|
|
+ {
|
|
|
+ return size() == 0;
|
|
|
+ }
|
|
|
+
|
|
|
// TODO
|
|
|
// iterator_type cstart() noexcept;
|
|
|
// iterator_type cend() noexcept;
|