Sha256: d84881746514542e9cbfaaae99bbd32ac551e5645271c847b310288ee5fc2746
Contents?: true
Size: 811 Bytes
Versions: 2
Compression:
Stored size: 811 Bytes
Contents
module Alf module Operator::Relational class Intersect < Alf::Operator() include Operator, Operator::Relational, Operator::Shortcut, Operator::Binary signature do |s| end class HashBased include Operator, Operator::Binary protected def _prepare @index = Hash.new right.each{|t| @index[t] = true} end def _each left.each do |left_tuple| yield(left_tuple) if @index.has_key?(left_tuple) end end end protected # (see Shortcut#longexpr) def longexpr chain HashBased.new, datasets end end # class Intersect end # module Operator::Relational end # module Alf
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alf-0.10.1 | lib/alf/operator/relational/intersect.rb |
alf-0.10.0 | lib/alf/operator/relational/intersect.rb |