Please suggest an efficient way to copy bytes from a basic_string< char16_t> to vector< uint8_t>.
I am not concerned with the encoding, and just want to copy the bytes to the bytearray. It will later be interpreted with the correct encoding downstream.
Thanks.
An option is to get the data pointer, cast it to your new type and assign it to your target vector:
This is one of the few cases where
reinterpret_cast
is a perfectly valid choice. From cppreference (highlights added by me):