Class: SPARQL::Algebra::Operator::Not
- Inherits:
-
Unary
- Object
- SPARQL::Algebra::Operator
- Unary
- SPARQL::Algebra::Operator::Not
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/not.rb
Overview
The SPARQL logical not operator.
Constant Summary
- NAME =
[:not, :!']
Constants inherited from Unary
Constants inherited from SPARQL::Algebra::Operator
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary (collapse)
-
- (RDF::Literal::Boolean) apply(operand)
Returns the logical
NOT(inverse) of the operand.
Methods included from Evaluatable
Methods inherited from Unary
Methods inherited from SPARQL::Algebra::Operator
arity, base_uri, #base_uri, base_uri=, #boolean, #constant?, #eql?, #evaluatable?, evaluate, #executable?, for, #initialize, #inspect, #operand, #optimize, prefixes, #prefixes, prefixes=, #to_sse, #to_sxp, #variable?
Methods included from Expression
cast, #constant?, #evaluate, for, new, open, #optimize, parse, #to_sse, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Unary
Instance Method Details
- (RDF::Literal::Boolean) apply(operand)
Returns the logical NOT (inverse) of the operand.
Note that this operator operates on the effective boolean value (EBV) of its operand.
26 27 28 29 30 31 32 |
# File 'lib/sparql/algebra/operator/not.rb', line 26 def apply(operand) case bool = boolean(operand) when RDF::Literal::Boolean RDF::Literal(bool.false?) else super end end |