Class: SPARQL::Algebra::Operator::Ternary Abstract
- Inherits:
-
SPARQL::Algebra::Operator
- Object
- SPARQL::Algebra::Operator
- SPARQL::Algebra::Operator::Ternary
- 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
- ARITY =
3
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary (collapse)
-
- (Ternary) initialize(arg1, arg2, arg3, options = {})
constructor
A new instance of Ternary.
Methods inherited from SPARQL::Algebra::Operator
arity, base_uri, #base_uri, base_uri=, #boolean, #constant?, #eql?, #evaluatable?, evaluate, #executable?, for, #inspect, #operand, #optimize, prefixes, #prefixes, prefixes=, #to_sse, #to_sxp, #variable?
Methods included from Evaluatable
Methods included from Expression
cast, #constant?, #evaluate, for, new, open, #optimize, parse, #to_sse, #variable?
Constructor Details
- (Ternary) initialize(arg1, arg2, arg3, options = {})
A new instance of Ternary
487 488 489 |
# File 'lib/sparql/algebra/operator.rb', line 487 def initialize(arg1, arg2, arg3, = {}) super end |