Doubly-linked list/Definition: Difference between revisions

m
Line 1,424:
 
=={{header|Julia}}==
Regarding the avoidance or circular loops part of this task, a call to <lang julia>show(DLNode)</lang> reveals that Julia considers all of the nodes of doubly linked lists of this kind to contain circular references to their adjacent nodes.
<lang julia>mutable struct DLNode{T}
value::T
4,102

edits