Module: FrOData::Query::Criteria::LambdaOperators
- Included in:
- FrOData::Query::Criteria
- Defined in:
- lib/frodata/query/criteria/lambda_operators.rb
Instance Method Summary collapse
-
#all(property) ⇒ self
Applies the ‘any` lambda operator to the given property.
-
#any(property) ⇒ self
Applies the ‘any` lambda operator to the given property.
Instance Method Details
#all(property) ⇒ self
Applies the ‘any` lambda operator to the given property
15 16 17 |
# File 'lib/frodata/query/criteria/lambda_operators.rb', line 15 def all(property) set_function_and_argument(:all, property) end |
#any(property) ⇒ self
Applies the ‘any` lambda operator to the given property
8 9 10 |
# File 'lib/frodata/query/criteria/lambda_operators.rb', line 8 def any(property) set_function_and_argument(:any, property) end |