== cobalt/io/sleep.hpp The sleep operations are convenience wrappers for timers. Every sleep operation creates a timer, so it is generally more efficient to reuse a timer. [source,cpp] ---- // Waits using a steady_timer. template inline auto sleep(const std::chrono::time_point & tp); // Waits using a system_timer. template inline auto sleep(const std::chrono::time_point & tp); // Waits using a steady_timer. template inline auto sleep(const std::chrono::duration & dur); ----