This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Node | |
| attr_accessor :node, :next | |
| def initialize(node) | |
| @node = node | |
| end | |
| end | |
| #### | |
| # add - inserts the specified element at the specified position, returns true on success |