Module: Arel::ArrayPredications
- Defined in:
- lib/arel/array_predications.rb
Instance Method Summary collapse
-
#contained_by(value) ⇒ Object
Used by both JSON and ARRAY so it doesn’t try to cast to array.
- #excludes(value) ⇒ Object
Instance Method Details
#contained_by(value) ⇒ Object
Used by both JSON and ARRAY so it doesn’t try to cast to array
5 6 7 |
# File 'lib/arel/array_predications.rb', line 5 def contained_by(value) Arel::Nodes::ContainedBy.new(self, value) end |