Crates.io | packed_integer_array |
lib.rs | packed_integer_array |
version | 0.2.0 |
source | src |
created_at | 2018-12-31 16:26:17.036973 |
updated_at | 2019-01-01 12:31:50.254078 |
description | An array of integers packed in varying bit-lengths which supports random access |
homepage | |
repository | https://github.com/DarkOtter/packed-integers-rs |
max_upload_size | |
id | 104716 |
size | 47,332 |
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).
The 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.