fn findLast(node: *Node) *Node

Iterate over the singly-linked list from this node, until the final node is found. This operation is O(N).

Parameters

node: *Node,