Sha256: 63c9f3038895586d44a46140d5ae7f813c2e7b480f664521c411d4df39265d26

Contents?: true

Size: 450 Bytes

Versions: 5

Compression:

Stored size: 450 Bytes

Contents

module Alf
  module Operator
    module Relational
      class Wrap
        include Relational, Unary

        signature do |s|
          s.argument :attributes, AttrList, []
          s.argument :as, AttrName, :wrapped
        end

        # (see Operator#compile)
        def compile
          Engine::Wrap.new(operand, attributes, as, false)
        end

      end # class Wrap
    end # module Relational
  end # module Operator
end # module Alf

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alf-0.12.2 lib/alf/operator/relational/wrap.rb
alf-0.12.1 lib/alf/operator/relational/wrap.rb
alf-0.12.0 lib/alf/operator/relational/wrap.rb
alf-0.11.1 lib/alf/operator/relational/wrap.rb
alf-0.11.0 lib/alf/operator/relational/wrap.rb