Verse Library verse

08 The Next And Previous Nodes In The List

Creates specialized doubly linked list nodes for integer and string data types using class inheritance.

extracted-snippets/documentation/en-us/fortnite/linked-lists-in-verse/08-the-next-and-previous-nodes-in-the-list.verse

# 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:    the next and previous nodes in the list.
# A container node that contains integer data and a reference to both
# the next and previous nodes in the list.
doubly_linked_int_node := class(doubly_linked_node):
Data<override>:int
# A container node that contains string data and a reference to both
# the next and previous nodes in the list.
doubly_linked_string_node := class(doubly_linked_node):
Data<override>:string

Comments

    Sign in to vote, comment, or suggest an edit. Sign in