![]() |
PhoenixInkscape
2.0.0
Generate multiple png files with svg inkscape files
|
#include <string>
#include <vector>
Go to the source code of this file.
Functions | |
template<typename T > | |
void | phoenix_vector_split (std::vector< std::vector< T > > &vecVecOutput, const std::vector< T > &vecInput, size_t nbPart) |
Split a list in a list of lists, keep the order of the input file if the output is used for std::thread. More... | |
void phoenix_vector_split | ( | std::vector< std::vector< T > > & | vecVecOutput, |
const std::vector< T > & | vecInput, | ||
size_t | nbPart | ||
) |
Split a list in a list of lists, keep the order of the input file if the output is used for std::thread.
[out] | vecVecOutput | : output list of list of nbPart parts |
vecInput | : input list to be split | |
nbPart | : number of part in which to split the vecInput |
Definition at line 19 of file phoenix_vector_split.h.
Referenced by testVectorSplit(), and testVectorSplit2().