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