|
tlx
|
#include <tlx/string/bitdump.hpp>Go to the source code of this file.
Namespaces | |
| tlx | |
Functions | |
Bitdump Methods | |
| 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 significant bits (msb) first. More... | |
| std::string | bitdump_8_msb (const std::string &str) |
| Dump a (binary) string of 8-bit bytes as a sequence of '0' and '1' characters, with the most significant bits (msb) first. More... | |
| std::string | bitdump_le8 (const void *const data, size_t size) |
| deprecated method: unclear naming and documentation. More... | |
| std::string | bitdump_le8 (const std::string &str) |
| deprecated method: unclear naming and documentation. More... | |
| 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 significant bits (lsb) first. More... | |
| std::string | bitdump_8_lsb (const std::string &str) |
| Dump a (binary) string of 8-bit bytes as a sequence of '0' and '1' characters, with the least significant bits (lsb) first. More... | |
| std::string | bitdump_be8 (const void *const data, size_t size) |
| deprecated method: unclear naming and documentation. More... | |
| std::string | bitdump_be8 (const std::string &str) |
| deprecated method: unclear naming and documentation. More... | |