template <class T>

struct SinglyLinkedList

Defined at line 188 of file ../../third_party/scudo/src/list.h

Public Methods

void push_back (T * X)

Defined at line 197 of file ../../third_party/scudo/src/list.h

void push_front (T * X)

Defined at line 207 of file ../../third_party/scudo/src/list.h

void pop_front ()

Defined at line 215 of file ../../third_party/scudo/src/list.h

void insert (T * Prev, T * X)

Insert X next to Prev

Defined at line 224 of file ../../third_party/scudo/src/list.h

void extract (T * Prev, T * X)

Defined at line 235 of file ../../third_party/scudo/src/list.h

void append_back (SinglyLinkedList<T> * L)

Defined at line 246 of file ../../third_party/scudo/src/list.h