Does anyone know a library for encoding a number of primitive types (such as integers, floats, strings, etc.) into a string, but keeping the lexicographic order of the types?
Ideally, I am looking for a C ++ library, but other languages are wonderful too. In addition, it can be assumed that the format does not have to be encoded in the string itself (that is, if int64 / string / float, then the encoded string does not need to be encoded for this information, only data encoding is enough).
source
share