| 169 | return StringValue <= secondOperand.StringValue ? 1.0 : 0.0; |
| 170 | } |
| 171 | double TExpressionVariable::StrL(const TExpressionVariable& secondOperand) const { |
| 172 | return StringValue < secondOperand.StringValue ? 1.0 : 0.0; |
| 173 | } |
| 174 | double TExpressionVariable::StrGe(const TExpressionVariable& secondOperand) const { |
| 175 | return StringValue >= secondOperand.StringValue ? 1.0 : 0.0; |
| 176 | } |
no outgoing calls
no test coverage detected