#include <outputformatter.h>
Structure to convert a given value into binary format, such that all methods return a std::vector<char>
.
Definition at line 99 of file outputformatter.h.
|
using | type = std::vector< char > |
| Return type of this converter. More...
|
|
◆ type
◆ as_integer()
type smash::ToBinary::as_integer |
( |
int |
value | ) |
const |
|
inline |
Converts an integer to binary format.
- Parameters
-
[in] | value | number to convert |
- Returns
- a vector of char representing the binary format of the integer
Definition at line 110 of file outputformatter.h.
type as_binary_data(T value) const
Template method to convert numbers into binary format.
◆ as_double()
type smash::ToBinary::as_double |
( |
double |
value | ) |
const |
|
inline |
Converts a double to binary format.
- Parameters
-
[in] | value | number to convert |
- Returns
- a vector of char representing the binary format of the double
Definition at line 118 of file outputformatter.h.
◆ as_precise_double()
type smash::ToBinary::as_precise_double |
( |
double |
value | ) |
const |
|
inline |
Converts a double to binary format, intended for precise representation.
Note that for binary output there is no difference between this and the ToBinary::as_double
method, but this method has still to be introduced to allow other classes to get the converter class as a template parameter.
- Parameters
-
[in] | value | number to convert |
- Returns
- a vector of char representing the binary format of the double
Definition at line 129 of file outputformatter.h.
type as_double(double value) const
Converts a double to binary format.
◆ as_string()
type smash::ToBinary::as_string |
( |
const std::string & |
str | ) |
const |
|
inline |
Converts a string to binary format.
- Parameters
-
- Returns
- a vector of char representing the binary format of the string
Definition at line 137 of file outputformatter.h.
138 type binary_data(str.begin(), str.end());
std::vector< char > type
Return type of this converter.
◆ as_binary_data()
template<typename T >
type smash::ToBinary::as_binary_data |
( |
T |
value | ) |
const |
|
inlineprivate |
Template method to convert numbers into binary format.
- Parameters
-
[in] | value | number to convert |
- Returns
- a vector of char representing the binary format of the number
Definition at line 150 of file outputformatter.h.
151 type binary_data(
sizeof(T));
152 std::memcpy(binary_data.data(), &value,
sizeof(T));
The documentation for this class was generated from the following file: