CLinkedListNode<T>

CLinkedListNode<T> is a helper class used in implementing the CLinkedListNode<T> class.

Description

The CLinkedListNode<T> class is a node of the doubly linked list CLinkedListNode<T>. List navigation methods are implemented in the class.

Declaration

   template<typename T>
   class CLinkedListNode

Header

   #include <Generic\LinkedList.mqh>

Class Methods

Method

Description

List

Returns and sets a pointer to the CLinkedList<T>

Next

Returns and sets a pointer to the next node

Previous

Returns and sets a pointer to the previous node

Value

Returns and sets the node value