Class: Journey::Nodes::Binary

Inherits:
Node
  • Object
show all
Defined in:
lib/journey/nodes/node.rb

Direct Known Subclasses

Cat

Instance Attribute Summary collapse

Attributes inherited from Node

#left, #memo

Instance Method Summary collapse

Methods inherited from Node

#each, #name, #to_dot, #to_s, #to_sym, #type

Constructor Details

#initialize(left, right) ⇒ Binary

Returns a new instance of Binary.



82
83
84
85
# File 'lib/journey/nodes/node.rb', line 82

def initialize left, right
  super(left)
  @right = right
end

Instance Attribute Details

#rightObject

Returns the value of attribute right.



80
81
82
# File 'lib/journey/nodes/node.rb', line 80

def right
  @right
end

Instance Method Details

#childrenObject



87
# File 'lib/journey/nodes/node.rb', line 87

def children; [left, right] end