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