Class: SPARQL::Algebra::Operator::Multiply
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/multiply.rb
Overview
The SPARQL numeric multiply operator.
[117] MultiplicativeExpression::= UnaryExpression ( '' UnaryExpression | '/' UnaryExpression )
Constant Summary collapse
- NAME =
[:*, :multiply]
Instance Method Summary collapse
-
#apply(left, right, **options) ⇒ RDF::Literal::Numeric
Returns the arithmetic product of the operands.
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Evaluatable
#evaluate, #memoize, #replace_aggregate!, #replace_vars!
Instance Method Details
#apply(left, right, **options) ⇒ RDF::Literal::Numeric
Returns the arithmetic product of the operands.
39 40 41 42 43 44 45 |
# File 'lib/sparql/algebra/operator/multiply.rb', line 39 def apply(left, right, **) case when left.is_a?(RDF::Literal::Numeric) && right.is_a?(RDF::Literal::Numeric) left * right else raise TypeError, "expected two RDF::Literal::Numeric operands, but got #{left.inspect} and #{right.inspect}" end end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
52 53 54 |
# File 'lib/sparql/algebra/operator/multiply.rb', line 52 def to_sparql(**) "(#{operands.first.to_sparql(**)} * #{operands.last.to_sparql(**)})" end |