mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
18 lines
822 B
C++
18 lines
822 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <DB/IO/WriteBuffer.h>
|
||
|
|
||
|
|
||
|
/// Выводит переданный размер в байтах в виде 123.45 GiB.
|
||
|
void formatReadableSizeWithBinarySuffix(double value, DB::WriteBuffer & out, int precision = 2);
|
||
|
std::string formatReadableSizeWithBinarySuffix(double value, int precision = 2);
|
||
|
|
||
|
/// Выводит переданный размер в байтах в виде 132.55 GB.
|
||
|
void formatReadableSizeWithDecimalSuffix(double value, DB::WriteBuffer & out, int precision = 2);
|
||
|
std::string formatReadableSizeWithDecimalSuffix(double value, int precision = 2);
|
||
|
|
||
|
/// Выводит число в виде 123.45 billion.
|
||
|
void formatReadableQuantity(double value, DB::WriteBuffer & out, int precision = 2);
|
||
|
std::string formatReadableQuantity(double value, int precision = 2);
|