| 220 | |
| 221 | template <typename T> |
| 222 | double CalcExpression(const TString& expr, const T& container) { |
| 223 | TExpression exp(expr); |
| 224 | return exp.CalcExpression(container); |
| 225 | } |
| 226 | |
| 227 | template <typename T> |
| 228 | TString CalcExpressionStr(const TString& expr, const T& container) { |
no test coverage detected