class Decision

Public Class Methods

new() click to toggle source
Calls superclass method Node::new
# File lib/dibnahs_dogs.rb, line 334
def initialize
  super
  @child = []
end

Public Instance Methods

pointsTo=(arr) click to toggle source
# File lib/dibnahs_dogs.rb, line 338
def pointsTo=(arr)
  self.child << arr 
end