| Flow 1.0.0
    Flow project: Full implementation reference. | 
#include "flow/perf/perf_fwd.hpp"#include "flow/perf/clock_type_fwd.hpp"#include "flow/perf/checkpt_timer.hpp"Go to the source code of this file.
| Namespaces | |
| namespace | flow | 
| Catch-all namespace for the Flow project: A collection of various production-quality modules written in modern C++17, originally by ygoldfel. | |
| namespace | flow::perf | 
| Flow module containing tools for profiling and optimization. | |
| Functions | |
| template<typename Accumulator , typename Func > | |
| auto | flow::perf::timed_function (Clock_type clock_type, Accumulator *accumulator, Func &&function) | 
| Constructs a closure that times and executes void-returningfunction(), adding the elapsed time with clock typeclock_type– as raw ticks of perf::Duration – toaccumulator.  More... | |
| template<typename Accumulator , typename Func > | |
| auto | flow::perf::timed_function_nvr (Clock_type clock_type, Accumulator *accumulator, Func &&function) | 
| Constructs a closure that times and executes non- void-returningfunction(), adding the elapsed time with clock typeclock_type– as raw ticks of perf::Duration – toaccumulator.  More... | |