Class: SPARQL::Algebra::Operator::Equal
- Inherits:
-
Compare
- Object
- SPARQL::Algebra::Operator
- Binary
- Compare
- 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 =
:'='
Constants inherited from Binary
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#apply(term1, term2, **options) ⇒ RDF::Literal::Boolean
Returns TRUE if
term1
andterm2
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.
Methods inherited from Compare
Methods included from Evaluatable
#evaluate, #memoize, #replace_aggregate!, #replace_vars!
Methods inherited from Binary
Methods inherited from SPARQL::Algebra::Operator
#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars
Methods included from Expression
cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Binary
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 |