-
Notifications
You must be signed in to change notification settings - Fork 0
index_list item
Ned Bingham edited this page Mar 17, 2017
·
1 revision
-
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.