![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
#include <algorithm>#include <memory>#include <vector>Go to the source code of this file.
Namespaces | |
| vccc | |
Functions | |
| template<typename T , typename Allocator = std::allocator<T>> | |
| std::vector< T, Allocator > | reserved_vector (typename std::vector< T, Allocator >::size_type size) |
| returns reserved vector More... | |
| template<typename T , typename Allocator > | |
| std::vector< T, Allocator > & | concat (std::vector< T, Allocator > &to, const std::vector< T, Allocator > &from) |
| template<typename T , typename Allocator > | |
| std::vector< T, Allocator > & | concat (std::vector< T, Allocator > &to, std::vector< T, Allocator > &&from) |
| concat two vectors More... | |