class SPARQL::Algebra::Operator::Quaternary
A SPARQL
quaternary operator.
Operators of this kind take four operands.
@abstract
Constants
- ARITY
Public Class Methods
new(arg1, arg2, arg3, arg4, **options)
click to toggle source
@param [RDF::Term] arg1
the first operand
@param [RDF::Term] arg2
the second operand
@param [RDF::Term] arg3
the third operand
@param [RDF::Term] arg4
the forth operand
@param [Hash{Symbol => Object}] options
any additional options (see {Operator#initialize})
Calls superclass method
SPARQL::Algebra::Operator::new
# File lib/sparql/algebra/operator.rb, line 848 def initialize(arg1, arg2, arg3, arg4, **options) super end