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