struct Node [src]

This struct contains only the prev and next pointers and not any data payload. The intended usage is to embed it intrusively into another data structure and access the data with @fieldParentPtr.

Fields

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

Source

pub const Node = struct { prev: ?*Node = null, next: ?*Node = null, }