Method: Arel::Nodes::BindParam#unboundable?

Defined in:
activerecord/lib/arel/nodes/bind_param.rb

#unboundable?Boolean

Returns:

  • (Boolean)


39
40
41
# File 'activerecord/lib/arel/nodes/bind_param.rb', line 39

def unboundable?
  value.respond_to?(:unboundable?) && value.unboundable?
end