Class: SPARQL::Algebra::Operator::Equal
- Defined in:
- lib/sparql/algebra/operator/equal.rb
Overview
The SPARQL relational = (equal) comparison operator.
[114] RelationalExpression ::= NumericExpression ('=' NumericExpression)?
Direct Known Subclasses
Constant Summary collapse
- NAME =
:'='
Instance Method Summary collapse
-
#apply(term1, term2, **options) ⇒ RDF::Literal::Boolean
Returns TRUE if
term1andterm2are the same RDF term as defined in Resource Description Framework (RDF): Concepts and Abstract Syntax [CONCEPTS]; produces a type error if the arguments are both literal but are not the same RDF term *; returns FALSE otherwise.
Methods inherited from Compare
Methods included from Evaluatable
#evaluate, #memoize, #replace_aggregate!, #replace_vars!
Instance Method Details
#apply(term1, term2, **options) ⇒ RDF::Literal::Boolean
Returns TRUE if term1 and term2 are the same RDF term as defined in Resource Description Framework (RDF): Concepts and Abstract Syntax [CONCEPTS]; produces a type error if the arguments are both literal but are not the same RDF term *; returns FALSE otherwise. term1 and term2 are the same if any of the following is true:
- term1 and term2 are equivalent IRIs as defined in 6.4 RDF URI References of [CONCEPTS].
- term1 and term2 are equivalent literals as defined in 6.5.1 Literal Equality of [CONCEPTS].
- term1 and term2 are the same blank node as described in 6.6 Blank Nodes of [CONCEPTS].
39 40 41 42 43 |
# File 'lib/sparql/algebra/operator/equal.rb', line 39 def apply(term1, term2, **) term1 = term1.dup.extend(RDF::TypeCheck) term2 = term2.dup.extend(RDF::TypeCheck) RDF::Literal(term1 == term2) end |