Sha256: e8aee98c01bc1d1c9d2444cda52225d640956f374fa8368905fab9499d2994fd
Contents?: true
Size: 439 Bytes
Versions: 19
Compression:
Stored size: 439 Bytes
Contents
module Chewy class Query module Nodes class Expr < Base def & other Nodes::And.new self, other end def | other Nodes::Or.new self, other end def ! Nodes::Not.new self end def ~ @options[:cache] = true self end def __render__ raise NotImplementedError end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems