是否有相当于alloca在Rust中创建可变长度数组?
alloca
我正在寻找相当于以下C99代码:
void go(int n) { int array[n]; // ... }
rust
rust ×1