Sha256: f853c1add43788ecc6f4b049b4fd07b7eaf1fd140f78d00102876ccee4fe83a4
Contents?: true
Size: 662 Bytes
Versions: 2
Compression:
Stored size: 662 Bytes
Contents
module Alf module Operator::Relational class Project < Alf::Operator() include Operator::Relational, Operator::Shortcut, Operator::Unary signature do |s| s.argument :attributes, AttrList, [] s.option :allbut, Boolean, false, 'Project all but specified attributes?' end protected # (see Operator::Shortcut#longexpr) def longexpr chain Operator::NonRelational::Compact.new, Operator::NonRelational::Clip.new(@attributes, {:allbut => @allbut}), datasets end end # class Project 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/project.rb |
alf-0.10.0 | lib/alf/operator/relational/project.rb |