MySQL 8.4.1
Source Code Documentation
ut_list_node< Type > Struct Template Reference

The two way list node. More...

#include <ut0lst.h>

Public Member Functions

void reverse ()
 

Public Attributes

Type * prev
 pointer to the previous node, NULL if start of list More...
 
Type * next
 pointer to next node, NULL if end of list More...
 

Detailed Description

template<typename Type>
struct ut_list_node< Type >

The two way list node.

Template Parameters
Typethe list node type name

Member Function Documentation

◆ reverse()

template<typename Type >
void ut_list_node< Type >::reverse ( )
inline

Member Data Documentation

◆ next

template<typename Type >
Type* ut_list_node< Type >::next

pointer to next node, NULL if end of list

◆ prev

template<typename Type >
Type* ut_list_node< Type >::prev

pointer to the previous node, NULL if start of list


The documentation for this struct was generated from the following file: