class SPARQL::Algebra::Operator::Ternary
A SPARQL
ternary operator.
Operators of this kind take three operands.
@abstract
Constants
- ARITY
Public Class Methods
new(arg1, arg2, arg3, **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 [Hash{Symbol => Object}] options
any additional options (see {Operator#initialize})
Calls superclass method
SPARQL::Algebra::Operator::new
# File lib/sparql/algebra/operator.rb, line 823 def initialize(arg1, arg2, arg3, **options) super end