Sha256: 058201f417e7061b4880c7ad3b5d8f4aae1c20e6b12ea7485b7cbf29474f7997
Contents?: true
Size: 692 Bytes
Versions: 2
Compression:
Stored size: 692 Bytes
Contents
module Alf module Operator::Relational class Union < Alf::Operator() include Operator::Relational, Operator::Shortcut, Operator::Binary signature do |s| end class DisjointBased include Operator, Operator::Binary protected def _each left.each(&Proc.new) right.each(&Proc.new) end end protected # (see Shortcut#longexpr) def longexpr chain Operator::NonRelational::Compact.new, DisjointBased.new, datasets end end # class Union 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/union.rb |
alf-0.10.0 | lib/alf/operator/relational/union.rb |