class Arel::Nodes::BindParam
Attributes
Public Class Methods
Source
# File lib/arel/nodes/bind_param.rb, line 7 def initialize(value) @value = value super() end
Calls superclass method
Public Instance Methods
Source
# File lib/arel/nodes/bind_param.rb, line 16 def eql?(other) other.is_a?(BindParam) && value == other.value end
Also aliased as: ==
Source
# File lib/arel/nodes/bind_param.rb, line 12 def hash [self.class, self.value].hash end