Class: SPARQL::Algebra::Operator::Binary Abstract
- Defined in:
- lib/sparql/algebra/operator.rb
Overview
This class is abstract.
A SPARQL binary operator.
Operators of this kind take two operands.
Constant Summary collapse
- ARITY =
2
Instance Method Summary collapse
-
#initialize(arg1, arg2, **options) ⇒ Binary
constructor
A new instance of Binary.
Constructor Details
#initialize(arg1, arg2, **options) ⇒ Binary
Returns a new instance of Binary.
948 949 950 |
# File 'lib/sparql/algebra/operator.rb', line 948 def initialize(arg1, arg2, **) super end |