Suppose I have a std::array<T, n> and want to take an array reference to its contents (i.e. to the non-exposed elems array member).
I was surprised to find that std::array<T, n>::data() returns T * and not T (&)[n], so it seems that some kind of cast is necessary. I can write:
std::array<int, 5> arr;
int (&ref)[5] = *reinterpret_cast<int (*)[5]>(arr.data());
However, this looks ugly and potentially unsafe. Is it legitimate (well-defined) code and is there a better way to do this?
constexprfunction template to hide that ugliness. – Ben Voigt Dec 4 '12 at 16:35arr.size()rather than5would be less brittle (it'sconstexprand so can be used as an array size). I'm not sure whether the cast is well-defined, though. – Mike Seymour Dec 4 '12 at 16:43