A binary buffer with no specific encoding. Use this tag only if you're having specific problems in relation with byte buffers
A binary buffer with no specific encoding.
Examples include byte[]
in Java, char[]
or uint8_t[]
in C++. Objects like std::wstring_t
that have a specific encoding (like UTF-8) assigned to them are no byte buffers.
Use this tag only if you're having specific problems in relation with byte buffers. Do not use this tag if there is no indication that the byte buffer you are using has any relation to the problem you're asking about.