Class: SPARQL::Algebra::Operator::StrDT
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/strdt.rb
Overview
The SPARQL strdt operator.
[121] BuiltInCall ::= ... | 'STRDT' '(' Expression ',' Expression ')'
Constant Summary collapse
- NAME =
:strdt
Instance Method Summary collapse
-
#apply(value, datatypeIRI, **options) ⇒ RDF::Literal
Constructs a literal with lexical form and type as specified by the arguments.
-
#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(value, datatypeIRI, **options) ⇒ RDF::Literal
Constructs a literal with lexical form and type as specified by the arguments.
39 40 41 42 |
# File 'lib/sparql/algebra/operator/strdt.rb', line 39 def apply(value, datatypeIRI, **) raise TypeError, "Literal #{value.inspect} is not simple" unless value.simple? RDF::Literal.new(value.to_s, datatype: datatypeIRI) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
49 50 51 |
# File 'lib/sparql/algebra/operator/strdt.rb', line 49 def to_sparql(**) "STRDT(" + operands.to_sparql(delimiter: ', ', **) + ")" end |