class LinkNode

Node helper class for Linked List

Attributes

next[RW]
prev[RW]
val[RW]

Public Class Methods

new(val=nil) click to toggle source
# File lib/algorithm_selector.rb, line 573
def initialize(val=nil)
  @val = val
  @next = nil
  @prev = nil
end