Function bitcoin_system::vector
source · pub fn vector<Args>(args: Args) -> Vec<CommonType<Args>>Expand description
| Construct a vector with the specified | elements. | | This is preferable over the list initializing | constructor of std::vector: | | - It automatically infers the element | type from its arguments. | | - If any arguments are rvalue references, | they will be moved into the vector (list | initialization always copies). |