Class: SPARQL::Algebra::Operator::Exprlist
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/exprlist.rb
Overview
The SPARQL GraphPattern exprlist operator.
Used for filters with more than one expression.
[72] ExpressionList ::= NIL | '(' Expression ( ',' Expression )* ')'
Constant Summary collapse
- NAME =
[:exprlist]
Instance Method Summary collapse
-
#evaluate(bindings, **options) ⇒ RDF::Literal::Boolean
Returns
trueif all operands evaluate totrue.
Methods included from Evaluatable
#apply, #memoize, #replace_aggregate!, #replace_vars!
Instance Method Details
#evaluate(bindings, **options) ⇒ RDF::Literal::Boolean
Returns true if all operands evaluate to true.
Note that this operator operates on the effective boolean value (EBV) of its operands.
52 53 54 55 |
# File 'lib/sparql/algebra/operator/exprlist.rb', line 52 def evaluate(bindings, **) res = operands.all? {|op| boolean(op.evaluate(bindings, **.merge(depth: [:depth].to_i + 1))).true? } RDF::Literal(res) # FIXME: error handling end |