Class: JMESPath::Nodes::Comparators::Lt Private
- Inherits:
-
JMESPath::Nodes::Comparator
- Object
- Node
- JMESPath::Nodes::Comparator
- JMESPath::Nodes::Comparators::Lt
- Defined in:
- lib/jmespath/nodes/comparator.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary
Constants inherited from JMESPath::Nodes::Comparator
JMESPath::Nodes::Comparator::COMPARABLE_TYPES
Instance Attribute Summary
Attributes inherited from JMESPath::Nodes::Comparator
Instance Method Summary collapse
Methods inherited from JMESPath::Nodes::Comparator
create, #initialize, #optimize, #visit
Methods inherited from Node
#chains_with?, #optimize, #visit
Constructor Details
This class inherits a constructor from JMESPath::Nodes::Comparator
Instance Method Details
#check(left_value, right_value) ⇒ Object
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.
76 77 78 |
# File 'lib/jmespath/nodes/comparator.rb', line 76 def check(left_value, right_value) left_value < right_value if comparable?(left_value, right_value) end |