#include <chrono>
#include <string>
Go to the source code of this file.
|
void | capo::format_duration_to (std::string &out, std::chrono::duration< float > dt) |
| Format duration as [HH:]MM:SS.
|
|
auto | capo::format_duration (std::chrono::duration< float > dt) -> std::string |
| Format duration as [HH:]MM:SS.
|
|
void | capo::format_bytes_to (std::string &out, std::uint64_t bytes) |
| Format bytes as human-readable, eg '924.5MiB'.
|
|
auto | capo::format_bytes (std::uint64_t bytes) -> std::string |
| Format bytes as human-readable, eg '924.5MiB'.
|
|