LinkedList.Node
EXTENSION
LinkedList.Node
Swift
1extension LinkedList.Node: Equatable where T: EquatableProperties
debugDescription
Swift
1public var debugDescription: StringMethods
==(_:_:)
Swift
1public static func == (lhs: LinkedList<T>.Node, rhs: LinkedList<T>.Node) -> BoolParameters
| Name | Description |
|---|---|
| lhs | A value to compare. |
| rhs | Another value to compare. |
hash(into:)
Swift
1public func hash(into hasher: inout Hasher)Parameters
| Name | Description |
|---|---|
| hasher | The hasher to use when combining the components of this instance. |
makeIterator()
Swift
1public func makeIterator() -> Iterator