InnoDB Plugin
1.0
|
#include <ut0lst.h>
Data Fields | |
TYPE * | prev |
TYPE * | next |
This macro expands to the unnamed type definition of a struct which should be embedded in the nodes of the list, the node type must be a struct. This struct contains the pointers to next and previous nodes in the list. The name of the field in the node struct should be the name given to the list.
TYPE | the list node type name |
TYPE* ut_list_node< TYPE >::next |
pointer to next node, NULL if end of list
TYPE* ut_list_node< TYPE >::prev |
pointer to the previous node, NULL if start of list