Class: Bmg::Operator::Matching
- Inherits:
-
Object
- Object
- Bmg::Operator::Matching
- Includes:
- Binary
- Defined in:
- lib/bmg/operator/matching.rb
Overview
Image operator.
Extends each tuple with its image in right.
Constant Summary
Constants included from Algebra
Instance Attribute Summary
Attributes included from Binary
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(type, left, right, on) ⇒ Matching
constructor
A new instance of Matching.
- #to_ast ⇒ Object
Methods included from Binary
Methods included from Bmg::Operator
Methods included from Relation
#debug, #delete, empty, #empty?, #insert, new, #one, #one_or_nil, #to_json, #update, #visit, #ys_by_x
Methods included from Algebra
#allbut, #autosummarize, #autowrap, #constants, #extend, #image, #matching, #project, #rename, #restrict, #spied, #union, #unspied
Constructor Details
#initialize(type, left, right, on) ⇒ Matching
Returns a new instance of Matching.
11 12 13 14 15 16 |
# File 'lib/bmg/operator/matching.rb', line 11 def initialize(type, left, right, on) @type = type @left = left @right = right @on = on end |
Instance Method Details
#each ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/bmg/operator/matching.rb', line 24 def each index = Hash.new right.each_with_object(index) do |t, index| key = tuple_project(t, on) index[key] = true end left.each do |tuple| key = tuple_project(tuple, on) yield tuple if index.has_key?(key) end end |
#to_ast ⇒ Object
36 37 38 |
# File 'lib/bmg/operator/matching.rb', line 36 def to_ast [ :matching, left.to_ast, right.to_ast, on ] end |