| 129 | } // namespace |
| 130 | |
| 131 | int CelValueCompare(CelValue lhs, CelValue rhs) { |
| 132 | return lhs.InternalVisit<int>(ComparisonVisitor(rhs)); |
| 133 | } |
| 134 | |
| 135 | bool CelValueLessThan(CelValue lhs, CelValue rhs) { |
| 136 | return lhs.InternalVisit<int>(ComparisonVisitor(rhs)) < 0; |
no test coverage detected