I\'m trying to expose this function to Python using SWIG:
std::vector get_match_stats();
And I want SWIG to generate wrapping co
%template(IntVector) vector;