Class: SPARQL::Algebra::Operator::Ternary Abstract

Inherits:
Operator
  • Object
show all
Defined in:
lib/sparql/algebra/operator.rb

Overview

This class is abstract.

A SPARQL ternary operator.

Operators of this kind take three operands.

Constant Summary collapse

ARITY =
3

Instance Method Summary collapse

Constructor Details

#initialize(arg1, arg2, arg3, **options) ⇒ Ternary

Returns a new instance of Ternary.

Parameters:



971
972
973
# File 'lib/sparql/algebra/operator.rb', line 971

def initialize(arg1, arg2, arg3, **options)
  super
end