libcosmos
Linux C++ System Programming Library
|
Helper to output a primitive integer as hexadecimal in the style of 0x1234. More...
#include <formatting.hxx>
Public Member Functions | |
HexNum (const NUM num, size_t width) | |
![]() | |
const FormattedNumber & | showBase (bool yes_no) |
If a prefix identifier for the number's base should be shown (e.g. 0x for hex, default: yes). | |
size_t | width () const |
bool | showBase () const |
auto | num () const |
const std::string & | basePrefix () const |
SetBaseFN | baseFN () const |
operator std::string () const | |
Additional Inherited Members | |
![]() | |
using | SetBaseFN = std::function<void(std::ostream&)> |
This function is supposed to apply the desired number base to the stream. | |
![]() | |
FormattedNumber (const NUM num, size_t width, SetBaseFN fn, std::string base_prefix) | |
![]() | |
NUM | m_num |
size_t | m_width = 0 |
SetBaseFN | m_setbase_fn |
std::string | m_base_prefix |
bool | m_show_base = true |
Helper to output a primitive integer as hexadecimal in the style of 0x1234.
The stream state will be maintained i.e. after the output operation is finished the previous/default stream state will be applied
Leading zeroes will be added to reach the desired field width.
The given field width will only count towards the actual digits the number consists of. A possible base prefix is not counted towards the field width. I.e. if showBase() is set to true
then HexNum(0x10, 4) will be printed as: "0x0010".
Definition at line 130 of file formatting.hxx.
|
inline |
Definition at line 132 of file formatting.hxx.