Class: SPARQL::Algebra::Operator::Subtract
- Inherits:
-
Binary
- Object
- SPARQL::Algebra::Operator
- Binary
- SPARQL::Algebra::Operator::Subtract
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/subtract.rb
Overview
The SPARQL numeric subtract operator.
(- ?x ?y)
(subtract ?x ?y)
Constant Summary
- NAME =
[:-, :subtract]
Constants inherited from Binary
Constants inherited from SPARQL::Algebra::Operator
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary (collapse)
-
- (RDF::Literal::Numeric) apply(left, right)
Returns the arithmetic difference of the operands.
Methods included from Evaluatable
Methods inherited from Binary
Methods inherited from SPARQL::Algebra::Operator
arity, base_uri, #base_uri, base_uri=, #boolean, #constant?, #eql?, #evaluatable?, evaluate, #executable?, for, #initialize, #inspect, #operand, #optimize, prefixes, #prefixes, prefixes=, #to_sse, #to_sxp, #variable?
Methods included from Expression
cast, #constant?, #evaluate, for, new, open, #optimize, parse, #to_sse, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Binary
Instance Method Details
- (RDF::Literal::Numeric) apply(left, right)
Returns the arithmetic difference of the operands.
23 24 25 26 27 28 29 |
# File 'lib/sparql/algebra/operator/subtract.rb', line 23 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 |