class AST::Binary

Attributes

left[R]
right[R]

Public Class Methods

new(left, right) click to toggle source
# File bin/twitter-algebra, line 242
def initialize(left, right)
  @left = left
  @right = right
end

Public Instance Methods

load_data(threads) click to toggle source
# File bin/twitter-algebra, line 247
def load_data(threads)
  left.load_data(threads)
  right.load_data(threads)
end