Class: SPARQL::Algebra::Operator::FunctionCall
- Inherits:
-
SPARQL::Algebra::Operator
- Object
- SPARQL::Algebra::Operator
- SPARQL::Algebra::Operator::FunctionCall
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/function_call.rb
Overview
The SPARQL function_call
operator.
[70] FunctionCall ::= iri ArgList
Constant Summary collapse
- NAME =
:function_call
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#apply(iri, *args, **options) ⇒ RDF::Term
Invokes the function with the passed arguments.
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
-
#to_sxp_bin ⇒ Array
Returns the SPARQL S-Expression (SSE) representation of this expression.
Methods included from Evaluatable
#evaluate, #memoize, #replace_aggregate!, #replace_vars!
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_sxp, #validate!, #variable?, #variables, #vars
Methods included from Expression
cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator
Instance Method Details
#apply(iri, *args, **options) ⇒ RDF::Term
Invokes the function with the passed arguments.
34 35 36 37 |
# File 'lib/sparql/algebra/operator/function_call.rb', line 34 def apply(iri, *args, **) args = RDF.nil == args.last ? args[0..-2] : args SPARQL::Algebra::Expression.extension(iri, *args, **) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
55 56 57 58 59 60 61 |
# File 'lib/sparql/algebra/operator/function_call.rb', line 55 def to_sparql(**) iri, args = operands iri.to_sparql(**) + '(' + args.to_sparql(delimiter: ', ', **) + ')' end |
#to_sxp_bin ⇒ Array
Returns the SPARQL S-Expression (SSE) representation of this expression.
Remove the optional argument.
46 47 48 |
# File 'lib/sparql/algebra/operator/function_call.rb', line 46 def to_sxp_bin @operands.map(&:to_sxp_bin) end |