Class: SPARQL::Algebra::Operator::Divide
- Inherits:
-
Binary
- Object
- SPARQL::Algebra::Operator
- Binary
- SPARQL::Algebra::Operator::Divide
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/divide.rb
Overview
The SPARQL numeric divide operator.
Constant Summary
- NAME =
[:/', :divide]
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 quotient 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 quotient of the operands.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/sparql/algebra/operator/divide.rb', line 24 def apply(left, right) case when left.is_a?(RDF::Literal::Numeric) && right.is_a?(RDF::Literal::Numeric) # For xsd:decimal and xsd:integer operands, if the divisor is # (positive or negative) zero, an error is raised. raise ZeroDivisionError, "divided by #{right}" if left.is_a?(RDF::Literal::Decimal) && right.zero? # As a special case, if the types of both operands are # xsd:integer, then the return type is xsd:decimal. if left.is_a?(RDF::Literal::Integer) && right.is_a?(RDF::Literal::Integer) RDF::Literal(left.to_d / right.to_d) else left / right end else raise TypeError, "expected two RDF::Literal::Numeric operands, but got #{left.inspect} and #{right.inspect}" end end |