Module: Veritas::Optimizer::Function::Predicate::Enumerable::EmptyRightOperand
- Included in:
- Veritas::Optimizer::Function::Predicate::Exclusion::EmptyRightOperand, Inclusion::EmptyRightOperand
- Defined in:
- lib/veritas/optimizer/function/predicate/enumerable.rb
Overview
Optimize when the right operand is empty
Instance Method Summary collapse
-
#optimizable? ⇒ Boolean
private
Test if the right operand is empty.
Methods included from Veritas::Optimizer::Function::Predicate::Enumerable
Instance Method Details
#optimizable? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Test if the right operand is empty
90 91 92 |
# File 'lib/veritas/optimizer/function/predicate/enumerable.rb', line 90 def optimizable? right_nil? || right_none? end |