method
not_in
v7.2.3 -
Show latest stable
- Class:
Arel::Predications
not_in(other)public
No documentation available.
# File activerecord/lib/arel/predications.rb, line 112
def not_in(other)
case other
when Arel::SelectManager
Arel::Nodes::NotIn.new(self, other.ast)
when Enumerable
Nodes::NotIn.new self, quoted_array(other)
else
Nodes::NotIn.new self, quoted_node(other)
end
end