Sha256: 8fb0a5aa9017ba8af223ddb6a672eb93c0bbbbcf537eca70e2f86348257ba924

Contents?: true

Size: 399 Bytes

Versions: 5

Compression:

Stored size: 399 Bytes

Contents

module Alf
  module Operator
    module NonRelational
      class Sort
        include NonRelational, Unary

        signature do |s|
          s.argument :ordering, Ordering, []
        end

        # (see Operator#compile)
        def compile
          Engine::Sort.new(operand, ordering)
        end

      end # class Sort
    end # module NonRelational
  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/non_relational/sort.rb
alf-0.12.1 lib/alf/operator/non_relational/sort.rb
alf-0.12.0 lib/alf/operator/non_relational/sort.rb
alf-0.11.1 lib/alf/operator/non_relational/sort.rb
alf-0.11.0 lib/alf/operator/non_relational/sort.rb