I am playing with boost.python and I have the following question:
in python I have a list of lists:
l = [[1, 2, 3], [4, 5, 6]]
I have a c++ function like:
void do(std::vector<std::vector<int>> v);
Obviously I cannot pass l to the above function.
How I can pass a list of list to a function as above?