arrayvec
arrayvec copied to clipboard
A vector with a fixed capacity. (Rust)
It's currently not easily possible to create a parallel iterator from an `ArrayVec` that yields owned `T` values. I think this would be a very neat feature because it makes...
PTAL? Please see the individual commit descriptions for more details.
ArrayString has a ``remove()`` function, but no ``insert()``.
This PR adds a new error type representing an under-filled state for `ArrayVec::into_inner`. Previously, it would return `self` which is rather unconventional and prevents ergonomic error propagation (e.g. with `?`).
These functions are analogous to the conversion to/from Vec for String.
Just to run CI on my part. See main PR at #280.