#allocation #flatvec

flatvec

An indirection-collapsing container that stores all its elements in at most 2 allocations

3 releases (breaking)

0.3.0 Oct 30, 2021
0.2.0 Mar 6, 2021
0.1.0 Oct 13, 2020

#84 in #allocation

MIT/Apache

17KB
326 lines

flatvec

An indirection-collapsing container that generalizes from nested.

This crate provides a container FlatVec and two traits, IntoFlat and FromFlat. A FlatVec is parameterized on one type, and IntoFlat and FromFlat are both parameterized on two types. None of these type parameters need to be the same.

This permits collapsing indirections while also permitting minimal/zero-copy usage, as demonstrated in examples/domain_name.rs.

This interface also permits some interesting other applications, as in examples/gzip.rs.

Dependencies

~325KB
~12K SLoC