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