| 175 | return StringValue >= secondOperand.StringValue ? 1.0 : 0.0; |
| 176 | } |
| 177 | double TExpressionVariable::StrG(const TExpressionVariable& secondOperand) const { |
| 178 | return StringValue > secondOperand.StringValue ? 1.0 : 0.0; |
| 179 | } |
| 180 | TString TExpressionVariable::StrCond(const TExpressionVariable& secondOperand, const TExpressionVariable& u) const { |
| 181 | return !IsZeroDoubleValue() ? secondOperand.ToStr() : u.ToStr(); |
| 182 | } |
no outgoing calls
no test coverage detected