LinkedList.Node
CLASS
LinkedList.Node
Swift
1public class Node
Properties
value
Swift
1public let value: T
previous
Swift
1public fileprivate(set) weak var previous: Node?
next
Swift
1public fileprivate(set) var next: Node?