copyvec 0.1.0

A contiguous growable array type, with a fixed, stack-alllocated capacity that implements Copy.
Documentation
copyvec-0.1.0 has been yanked.

A stack-allocated sequence that mirror's Vec's API, but:

  • Implements [Copy] (and can only hold [Copy] types).
  • Does not grow.
  • Is #[no_std]/no-alloc compatible.