Node
scalation.DoublyLinkedList.Node
case class Node(elem: DoublyLinkedList.this.A, var ahead: DoublyLinkedList.this.Node, var behind: DoublyLinkedList.this.Node)
The Node inner case class wraps elements in nodes for double linkage.
Value parameters
- ahead
-
the node ahead of you (e.g., the car ahead)
- behind
-
the node behind you (e.g., the car behind)
- elem
-
the element in this node (you)
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article