Class: SPARQL::Algebra::Operator::Subject
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/subject.rb
Overview
The SPARQL SUBJECT operator.
Returns the subject part of arg as a term.
If triple is an RDF-star triple, the function returns the subject of this triple. Passing anything other than an RDF-star triple is an error.
[121] BuiltInCall ::= ... | 'SUBJECT' '(' Expression ')'
Constant Summary collapse
- NAME =
:subject
Instance Method Summary collapse
-
#apply(operand, **options) ⇒ RDF::Literal
Returns the subject part of arg.
-
#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(operand, **options) ⇒ RDF::Literal
Returns the subject part of arg.
46 47 48 49 |
# File 'lib/sparql/algebra/operator/subject.rb', line 46 def apply(operand, **) raise TypeError, "expected an RDF::Statement, but got #{operand.inspect}" unless operand.is_a?(RDF::Statement) operand.subject end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
56 57 58 |
# File 'lib/sparql/algebra/operator/subject.rb', line 56 def to_sparql(**) "SUBJECT(" + operands.last.to_sparql(**) + ")" end |