Module 0xa9::utils
use 0x1::vector;
Function concat
Public Functions
——
public(friend) fun concat<T: copy>(v1: vector<T>, v2: vector<T>): vector<T>
Implementation
public(package) fun concat<T: copy>(v1: vector<T>, v2: vector<T>): vector<T> {
let mut result = v1;
result.append(v2);
result
}