Combine Two vecs In Rust
Output:
[_active_nvim_run:7:3] alfa = [
"a",
"b",
"c",
"d",
"e",
"f",
]
[_active_nvim_run:8:3] bravo = []
Notes
-
There's also
.extend()
which can be used with references for things that implement copy. TODO is to make an example with that.
-- end of line --