Class: SPARQL::Algebra::Operator::Binary Abstract

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

Overview

This class is abstract.

A SPARQL binary operator.

Operators of this kind take two operands.

Direct Known Subclasses

Base, Dataset, Prefix

Constant Summary collapse

ARITY =
2

Instance Method Summary collapse

Constructor Details

#initialize(arg1, arg2, **options) ⇒ Binary

Returns a new instance of Binary.

Parameters:



948
949
950
# File 'lib/sparql/algebra/operator.rb', line 948

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