# Packed Integer Array
[](https://travis-ci.org/DarkOtter/packed-integers-rs)
[](https://crates.io/crates/packed_integer_array)
[](https://docs.rs/packed_integer_array)
This library provides an array of integers packed together in variable bit-lengths.
It supports in-place random access as well as iterating through the whole array (unpacking).
## See Also
The [bitpacking](https://crates.io/crates/bitpacking) crate provides a vectorised implementation
of unpacking/packing routines similar to the ones used in this crate, and there is a
possibility parts of this crate may be replaced by it in future for a speed increase
when packing/unpacking.