Node inside the linked list wrapping the actual data.
prev: ?*Node = null
next: ?*Node = null
data: T
pub const Node = struct { prev: ?*Node = null, next: ?*Node = null, data: T, }
Press escape to exit search and then '?' to see more options.