Sha256: 97b194dc757a7df88047d25757f084d349e0751be98f9f6e63e0f067f3c39a1d
Contents?: true
Size: 527 Bytes
Versions: 110
Compression:
Stored size: 527 Bytes
Contents
# frozen_string_literal: true module Arel # :nodoc: all module Nodes class And < Arel::Nodes::NodeExpression attr_reader :children def initialize(children) super() @children = children end def left children.first end def right children[1] end def hash children.hash end def eql?(other) self.class == other.class && self.children == other.children end alias :== :eql? end end end
Version data entries
110 entries across 106 versions & 9 rubygems