Bitcoin ABC 0.26.3
P2P Digital Currency
|
#include <initializer_list>
#include <type_traits>
#include <vector>
Go to the source code of this file.
Functions | |
template<typename... Args> | |
std::vector< typename std::common_type< Args... >::type > | Vector (Args &&...args) |
Construct a vector with the specified elements. | |
template<typename V > | |
V | Cat (V v1, V &&v2) |
Concatenate two vectors, moving elements. | |
template<typename V > | |
V | Cat (V v1, const V &v2) |
Concatenate two vectors. | |
|
inline |
Construct a vector with the specified elements.
This is preferable over the list initializing constructor of std::vector:
Definition at line 21 of file vector.h.