Difference between revisions of "cpp/types/endian"
From cppreference.com
RainerGrimm2 (Talk | contribs) |
RainerGrimm2 (Talk | contribs) |
||
Line 39: | Line 39: | ||
===Example=== | ===Example=== | ||
− | {{ | + | {{example |
+ | | code= | ||
#include <bit> | #include <bit> | ||
#include <iostream> | #include <iostream> | ||
Line 56: | Line 57: | ||
little-endian | little-endian | ||
}} | }} | ||
− | |||
{{langlinks|de|es|fr|it|ja|pt|ru|zh}} | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} |
Revision as of 14:01, 25 November 2020
Defined in header <bit>
|
||
enum class endian { |
(1) | (since C++20) |
Indicates the endianness of all scalar types:
- If all scalar types are little-endian,
std::endian::native
equalsstd::endian::little
- If all scalar types are big-endian,
std::endian::native
equalsstd::endian::big
Corner case platforms are also supported:
- If all scalar types have sizeof equal to 1, endianness does not matter and all three values,
std::endian::little
,std::endian::big
, andstd::endian::native
are the same. - If the platform uses mixed endian,
std::endian::native
equals neitherstd::endian::big
norstd::endian::little
.
Possible implementation
enum class endian { #ifdef _WIN32 little = 0, big = 1, native = little #else little = __ORDER_LITTLE_ENDIAN__, big = __ORDER_BIG_ENDIAN__, native = __BYTE_ORDER__ #endif };