How can I create / allocate an uninitialized fixed sized vector in Rust? Here's how I would do that in Java:
int[] a = new int[128];
This worked:
let a = [0, .. 128];
(via Rust IRC channel)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With