(C++) Flood::VectorJanuary 7, 2018 · View on GitHub (C++) Flood::Vector Flood::Vector is the Flood version of std::vector. Flood::Vector code snippets Convert ///From http://www.richelbilderbeek.nl/CppFloodVector.htm template <class T> std::vector<T> Convert(const Flood::Vector<T>& v) { return std::vector<T>(v.begin(),v.end()); }