C++ templates cannot be instantiated from Swift code, AIUI. I believe you have to typedef std::vector<...> MyVector;
or using MyVector = std::vector<...>;
in C++ somewhere, and then use the MyVector
alias in Swift.
C++ templates cannot be instantiated from Swift code, AIUI. I believe you have to typedef std::vector<...> MyVector;
or using MyVector = std::vector<...>;
in C++ somewhere, and then use the MyVector
alias in Swift.