- support move construct/assignment for linked-lists themselves and when moving into a 'normal' list - better consistency with begin/end signatures and the various iterators. - for indirect linked-lists, provide iterator access to the underlying data element address: iter.get() vs &(iter()) - add standard '->' indirection for iterators (as per normal STL definitions)
9 lines
70 B
Plaintext
9 lines
70 B
Plaintext
// List of labelList
|
|
|
|
(
|
|
(1 2 3 4)
|
|
(5 6 7 8)
|
|
(15 16 17 18)
|
|
)
|
|
|