| 354 | } |
| 355 | |
| 356 | THistogramPointsAndBins TExpressionVariable::ToHistogramPointsAndBins() const { |
| 357 | if (HasHistogramPointsAndBinsValue) { |
| 358 | return HistogramPointsAndBinsValue; |
| 359 | } |
| 360 | if (HasStrValue && TryParseFromStringToTHistogramPointsAndBins(HistogramPointsAndBinsValue)) { |
| 361 | HasHistogramPointsAndBinsValue = true; |
| 362 | return HistogramPointsAndBinsValue; |
| 363 | } |
| 364 | return THistogramPointsAndBins(); |
| 365 | } |
| 366 | |
| 367 | |
| 368 | bool TExpressionVariable::IsZeroDoubleValue() const { |
no test coverage detected