structstd.linked_list.DoublyLinkedList.Node[src]

Node inside the linked list wrapping the actual data.

Fields

prev: ?*Node = null
next: ?*Node = null
data: T

Source Code

Source code
pub const Node = struct {
    prev: ?*Node = null,
    next: ?*Node = null,
    data: T,
}