-
Notifications
You must be signed in to change notification settings - Fork 0
list item
Ned Bingham edited this page Mar 16, 2017
·
2 revisions
-
struct item
: end_item
A node which contains an element in the linked list.
-
value_type value
is the value that this node contains.
item()
The default constructor calls the default constructor of end_item
and leaves value unset.
item(const value_type &value)
Calls the default constructor of end_item
and sets value
directly.