![]() |
Bitcoin Core
0.21.1
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. More... | |
| template<typename V > | |
| V | Cat (V v1, V &&v2) |
| Concatenate two vectors, moving elements. More... | |
| template<typename V > | |
| V | Cat (V v1, const V &v2) |
| Concatenate two vectors. More... | |
|
inline |
|
inline |
|
inline |
Construct a vector with the specified elements.
This is preferable over the list initializing constructor of std::vector:
Definition at line 20 of file vector.h.
1.8.8