Add value after some node in the list.
Add value before some node in the list.
Add value at the end of list.
Iterate over nodes mapped to Entry elements (useful for testing).
Iterate over list nodes.
Get list node by key.
Insert key-value pair after some node in the list.
Insert key-value pair to the back of list.
Insert key-value pair before some node in the list.
Insert key-value pair to the front of list.
Move node to the location after other node.
Move node to the location before other node.
Move node to the back of list.
Move node to the front of list.
Add value at the start of list.
Remove node from list. It also becomes unaccessible via key lookup.
Remove value by key.
Remove the last node.
Remove the first node.
Container used internally by IniLikeFile and IniLikeGroup. Technically this is a list with optional value access by key.