*&x
Using c++11, we can write as
* std::addressof(x)
However, is there more readable version of this expression?
constexpr uint64_t lil_endian = 0x65'6e'64'69'61'6e;
// a.k.a. Clockwise-Rotated Endian which allocates like
// char[8] = { n,a,i,d,n,e,\0,\0 }
constexpr auto& arr =
reinterpret_cast<const std::array<char,8> &>
(*std::addressof(lil_endian) );
int main()
{
const auto str = std::string(arr.crbegin()+2, arr.crend() );
std::cout << str << '\n'
<< str.size() << '\n' << '\n';
for (const auto ch : str) {
std::cout << ch << " : " << std::hex << (unsigned int) ch << '\n';
}
}
endian
6
e : 65
n : 6e
d : 64
i : 69
a : 61
n : 6e
It's unclear what you're trying to do and why you use
constexpr
.But there are a couple of issues with your code:
reinterpret_cast
is not allowed in a constant expression.aliasing
uint64_t
with astd::array
is not allowed.You can, however, work around both of these by aliasing using a
const char*
in a non-constexpr
context. So the following is legal:Incidentally also the need for
*&
disappears.DEMO
== EDIT ==
If you just need to get a hold of the size of the variable in a generic way, just use
sizeof
in a function template. For example:DEMO