| 2023 | } |
| 2024 | |
| 2025 | int64_t RuntimeProfileBase::AveragedCounter::value() const { |
| 2026 | return unit_ == TUnit::DOUBLE_VALUE ? ComputeMean<double>() : ComputeMean<int64_t>(); |
| 2027 | } |
| 2028 | |
| 2029 | template <typename T> |
| 2030 | int64_t RuntimeProfileBase::AveragedCounter::ComputeMean() const { |
no outgoing calls