| 166 | return StringValue.StartsWith(secondOperand.StringValue) ? 1.0 : 0.0; |
| 167 | } |
| 168 | double TExpressionVariable::StrLe(const TExpressionVariable& secondOperand) const { |
| 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 | } |
no outgoing calls
no test coverage detected