OOPS
|
Functions | |
std::pair< std::vector< char >, std::vector< size_t > > | encodeStrings (const std::vector< std::string > &strings) |
Join strings into a single character array before MPI transfer. More... | |
std::vector< std::string > | decodeStrings (const std::vector< char > &charArray, const std::vector< size_t > &lengths) |
Split a character array into multiple strings. More... | |
std::vector<std::string> anonymous_namespace{mpi.cc}::decodeStrings | ( | const std::vector< char > & | charArray, |
const std::vector< size_t > & | lengths | ||
) |
Split a character array into multiple strings.
charArray | A character array storing a number of concatenated strings (without separating null characters). |
lengths | The list of lengths of the strings stored in charArray . |
charArray
. Definition at line 63 of file oops/mpi/mpi.cc.
std::pair<std::vector<char>, std::vector<size_t> > anonymous_namespace{mpi.cc}::encodeStrings | ( | const std::vector< std::string > & | strings | ) |
Join strings into a single character array before MPI transfer.
strings | Strings to join. |
Definition at line 32 of file oops/mpi/mpi.cc.