Class: SPARQL::Algebra::Operator::Quaternary Abstract
- Defined in:
- lib/sparql/algebra/operator.rb
Overview
This class is abstract.
A SPARQL quaternary operator.
Operators of this kind take four operands.
Constant Summary collapse
- ARITY =
4
Instance Method Summary collapse
-
#initialize(arg1, arg2, arg3, arg4, **options) ⇒ Quaternary
constructor
A new instance of Quaternary.
Constructor Details
#initialize(arg1, arg2, arg3, arg4, **options) ⇒ Quaternary
Returns a new instance of Quaternary.
996 997 998 |
# File 'lib/sparql/algebra/operator.rb', line 996 def initialize(arg1, arg2, arg3, arg4, **) super end |