# File lib/arel/nodes/and.rb, line 6 def initialize children super() @children = children end
# File lib/arel/nodes/and.rb, line 23 def eql? other self.class == other.class && self.children == other.children end
# File lib/arel/nodes/and.rb, line 19 def hash children.hash end
# File lib/arel/nodes/and.rb, line 11 def left children.first end
# File lib/arel/nodes/and.rb, line 15 def right children[1] end