Base class for HexNum and OctNum format output helpers.
More...
#include <formatting.hxx>
|
using | SetBaseFN = std::function<void(std::ostream&)> |
| This function is supposed to apply the desired number base to the stream.
|
|
template<typename NUM>
struct cosmos::FormattedNumber< NUM >
Base class for HexNum and OctNum format output helpers.
Definition at line 80 of file formatting.hxx.
◆ SetBaseFN
This function is supposed to apply the desired number base to the stream.
Definition at line 84 of file formatting.hxx.
◆ FormattedNumber()
Definition at line 88 of file formatting.hxx.
88 :
89 m_num{num}, m_width{width}, m_setbase_fn{fn}, m_base_prefix{base_prefix} {}
◆ baseFN()
◆ basePrefix()
◆ num()
◆ operator std::string()
Definition at line 102 of file formatting.hxx.
102 {
103 std::stringstream ss;
104 ss << *this;
105 return ss.str();
106 }
◆ showBase() [1/2]
◆ showBase() [2/2]
If a prefix identifier for the number's base should be shown (e.g. 0x for hex, default: yes).
Definition at line 94 of file formatting.hxx.
94{ m_show_base = yes_no; return *this; }
◆ width()
◆ m_base_prefix
◆ m_num
◆ m_setbase_fn
◆ m_show_base
◆ m_width
The documentation for this struct was generated from the following file: