class Arel::Nodes::NamedWindow
Attributes
Public Class Methods
Source
# File lib/arel/nodes/window.rb, line 70 def initialize name super() @name = name end
Calls superclass method
Arel::Nodes::Window::new
Public Instance Methods
Source
# File lib/arel/nodes/window.rb, line 84 def eql? other super && self.name == other.name end
Calls superclass method
Arel::Nodes::Window#eql?
Also aliased as: ==
Source
# File lib/arel/nodes/window.rb, line 80 def hash super ^ @name.hash end
Calls superclass method
Arel::Nodes::Window#hash
Source
# File lib/arel/nodes/window.rb, line 75 def initialize_copy other super @name = other.name.clone end
Calls superclass method
Arel::Nodes::Window#initialize_copy