Question.5
A developer re-initializes a UART driver at a new baud rate without allocating new memory:
alignas(UART) uint8_t buf[sizeof(UART)];
UART* u = new (buf) UART(9600);
// ... use UART at 9600 ...
u->~UART(); // Destroy old
u = new (buf) UART(115200); // ReconstructIs this pattern valid?