Class: SPARQL::Algebra::Operator::Ternary Abstract
- 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
-
#initialize(arg1, arg2, arg3, **options) ⇒ Ternary
constructor
A new instance of Ternary.
Constructor Details
#initialize(arg1, arg2, arg3, **options) ⇒ Ternary
Returns a new instance of Ternary.
971 972 973 |
# File 'lib/sparql/algebra/operator.rb', line 971 def initialize(arg1, arg2, arg3, **) super end |