mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
23 lines
439 B
C++
23 lines
439 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace chrono = std::chrono;
|
|
|
|
namespace time_util {
|
|
using clock_t = chrono::high_resolution_clock;
|
|
|
|
template <typename T, typename Dur = chrono::microseconds>
|
|
auto measure(const T& expr) noexcept {
|
|
auto start = clock_t::now();
|
|
expr();
|
|
auto finish = clock_t::now();
|
|
return chrono::duration_cast<Dur>(finish - start).count();
|
|
}
|
|
}
|
|
|
|
POLYBAR_NS_END
|