How to Access an Implicitly-Created Array within std::byte[]?
Insights on accessing implicitly-created arrays in C++ using std::byte[] and managing lifetimes.
A C++ class allows for creating an array for implicit-lifetime types using a std::byte array. This raises questions about the lifetime of T[n] and its sub-objects, whether it starts alongside the std::byte array, and the legality of pointer conversions and std::launder usage.