Data/Types/ResourceLinkedListElementInterface.php

This file contains the LinkedListInterface

This defines basic operations specific to a list item that points to an element ahead of itself, and an element 'behind' itself. This is usually done in a Doubly Linked List.

This structure is unique because one item can keep track of where it is in the list by keeping track of its neighbors, rather than using an array

Interfaces

LinkedListElementInterface The basic LinkedListInterface