This commit is contained in:
Lokathor
2020-01-11 18:49:53 -07:00
parent 0992443c1c
commit 8ae9f173a2
+4 -4
View File
@@ -17,10 +17,10 @@
//! * `ArrayishVec`: Like the `ArrayVec` from the
//! [arrayvec](https://docs.rs/arrayvec) crate. It's an array backed linear
//! data store. If you push too much data it will panic.
//! * `TinyVec`: **NOT YET IMPLEMENTED. PLANNED FOR 0.2, SOON(TM)** This will be
//! like the `SmallVec` from [smallvec](https://docs.rs/smallvec). It starts
//! as an `ArrayishVec`, and when that _would have_ overflowed it will instead
//! transition everything into a normal `Vec` on the heap.
//! * `TinyVec`: This is like the `SmallVec` from
//! [smallvec](https://docs.rs/smallvec). It starts as an `ArrayishVec`, and
//! when that _would have_ overflowed it will instead automatically transition
//! everything into a normal `Vec` on the heap and continue operations.
//!
//! ## How Is This Different From Those Other Crates?
//!