libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::HexNum< NUM > Struct Template Reference

Helper to output a primitive integer as hexadecimal in the style of 0x1234. More...

#include <formatting.hxx>

+ Inheritance diagram for cosmos::HexNum< NUM >:

Public Member Functions

 HexNum (const NUM num, size_t width)
 
- Public Member Functions inherited from cosmos::FormattedNumber< NUM >
const FormattedNumbershowBase (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

- Protected Types inherited from cosmos::FormattedNumber< NUM >
using SetBaseFN = std::function<void(std::ostream&)>
 This function is supposed to apply the desired number base to the stream.
 
- Protected Member Functions inherited from cosmos::FormattedNumber< NUM >
 FormattedNumber (const NUM num, size_t width, SetBaseFN fn, std::string base_prefix)
 
- Protected Attributes inherited from cosmos::FormattedNumber< NUM >
NUM m_num
 
size_t m_width = 0
 
SetBaseFN m_setbase_fn
 
std::string m_base_prefix
 
bool m_show_base = true
 

Detailed Description

template<typename NUM>
struct cosmos::HexNum< NUM >

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.

Constructor & Destructor Documentation

◆ HexNum()

template<typename NUM >
cosmos::HexNum< NUM >::HexNum ( const NUM num,
size_t width )
inline

Definition at line 132 of file formatting.hxx.

132 :
133 FormattedNumber<NUM>{num, width, [](std::ostream &o){ o << std::hex; }, "0x"}
134 {}

The documentation for this struct was generated from the following file: