Initial import of tinyvec v1.1.0

Test: n/a
Change-Id: I7ef105954efca2b429d2a98b5f655b60f86a2be8
28 files changed
tree: 41c2d521fc840654c5ae4ff56302b84b192c75c0
  1. .github/
  2. benches/
  3. src/
  4. src-backup/
  5. tests/
  6. .cargo_vcs_info.json
  7. .gitignore
  8. Cargo.toml
  9. Cargo.toml.orig
  10. CHANGELOG.md
  11. gen-array-impls.sh
  12. LICENSE-APACHE.md
  13. LICENSE-MIT.md
  14. LICENSE-ZLIB.md
  15. METADATA
  16. MODULE_LICENSE_APACHE2
  17. OWNERS
  18. README.md
  19. rustfmt.toml
README.md

License:Zlib Minimum Rust Version crates.io docs.rs

Unsafe-Zero-Percent

tinyvec

A 100% safe crate of vec-like types. #![forbid(unsafe_code)]

Main types are as follows:

  • ArrayVec is an array-backed vec-like data structure. It panics on overflow.
  • SliceVec is the same deal, but using a &mut [T].
  • TinyVec (alloc feature) is an enum that's either an Inline(ArrayVec) or a Heap(Vec). If a TinyVec is Inline and would overflow it automatically transitions to Heap and continues whatever it was doing.

To attain this “100% safe code” status there is one compromise: the element type of the vecs must implement Default.

For more details, please see the docs.rs documentation