Sha256: 719ab947a62442e568d329e793ae742f9ef0d22342e68a0a65ce9fc9d0fe38f9

Contents?: true

Size: 285 Bytes

Versions: 12

Compression:

Stored size: 285 Bytes

Contents

module AgnosticBackend
  module Queryable
    module Operations
      class NAry < Operation

        def initialize(operands:, context: nil)
          super(operands, context)
        end
      end

      class And < NAry;
      end

      class Or < NAry;
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
agnostic_backend-1.0.4 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-1.0.3 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-1.0.2 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-1.0.1 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-1.0.0 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.9 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.8 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.4 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.3 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.2 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.1 lib/agnostic_backend/queryable/operations/n_ary.rb
agnostic_backend-0.9.0 lib/agnostic_backend/queryable/operations/n_ary.rb