[go: up one dir, main page]

copyvec 0.1.1

A contiguous growable array type, with a fixed, stack-alllocated capacity that implements Copy.
Documentation

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.