class SPARQL::Algebra::Operator::Binary

A SPARQL binary operator.

Operators of this kind take two operands.

@abstract

Constants

ARITY

Public Class Methods

new(arg1, arg2, **options) click to toggle source

@param [RDF::Term] arg1

the first operand

@param [RDF::Term] arg2

the second operand

@param [Hash{Symbol => Object}] options

any additional options (see {Operator#initialize})
Calls superclass method SPARQL::Algebra::Operator::new
# File lib/sparql/algebra/operator.rb, line 800
def initialize(arg1, arg2, **options)
  super
end