11#ifndef TLX_STRING_BITDUMP_HEADER
12#define TLX_STRING_BITDUMP_HEADER
36std::string
bitdump_8_msb(
const void*
const data,
size_t size);
56template <
typename Type>
64std::string
bitdump_le8(
const void*
const data,
size_t size);
70template <
typename Type>
86std::string
bitdump_8_lsb(
const void*
const data,
size_t size);
106template <
typename Type>
114std::string
bitdump_be8(
const void*
const data,
size_t size);
120template <
typename Type>
std::string bitdump_le8(const void *const data, size_t size)
deprecated method: unclear naming and documentation.
std::string bitdump_be8_type(const Type &t)
deprecated method: unclear naming and documentation.
std::string bitdump_8_lsb(const void *const data, size_t size)
Dump a (binary) string of 8-bit bytes as a sequence of '0' and '1' characters, with the least signifi...
std::string bitdump_8_msb_type(const Type &t)
Dump a (binary) item of 8-bit bytes as a sequence of '0' and '1' characters, with the most significan...
std::string bitdump_8_lsb_type(const Type &t)
Dump a (binary) item of 8-bit bytes as a sequence of '0' and '1' characters, with the least significa...
std::string bitdump_le8_type(const Type &t)
deprecated method: unclear naming and documentation.
std::string bitdump_be8(const void *const data, size_t size)
deprecated method: unclear naming and documentation.
std::string bitdump_8_msb(const void *const data, size_t size)
Dump a (binary) string of 8-bit bytes as a sequence of '0' and '1' characters, with the most signific...