# Source URL: https://dev.epicgames.com/documentation/en-us/fortnite/linked-lists-in-verse
# Local doc: epic-docs/documentation/en-us/fortnite/linked-lists-in-verse.md
# Section: Verse Implementation
# A container node that contains data and a reference
# to the next node in the list.
list_node := class<unique>:
var Next:?list_node = false
Data:any = {}
Verse Library
verse
01 Verse Implementation
Defines a node class for linked lists containing a reference to the next node and generic data storage.
extracted-snippets/documentation/en-us/fortnite/linked-lists-in-verse/01-verse-implementation.verse