Stores KEY as the key in this key-value pair, VAL as the value, and NEXT as the next node in the linked list.
(K k, V v, Node n)
| 88 | * NEXT as the next node in the linked list. |
| 89 | */ |
| 90 | Node(K k, V v, Node n) { |
| 91 | key = k; |
| 92 | val = v; |
| 93 | next = n; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Returns the Node in this linked list of key-value pairs whose key |
nothing calls this directly
no outgoing calls
no test coverage detected