RList
|
#include <double.h>
A type for representing a node or a position in a doubly linked list.
This is the main type which users of RList interact with. It is the basis for most list operations, such as iteration, deletion, or searching.
This type is intended to be completely opaque to users of RList. Do not access any of its fields directly, as they might change any time. Use the RList accessor functions instead.