class Arel::Nodes::And
Attributes
Public Class Methods
Source
# File lib/arel/nodes/and.rb, line 7 def initialize children super() @children = children end
Calls superclass method
Arel::Nodes::Node::new
Public Instance Methods
Source
# File lib/arel/nodes/and.rb, line 24 def eql? other self.class == other.class && self.children == other.children end
Also aliased as: ==