Files
tantivy/master/bitpacking/sidebar-items.js
2018-04-10 01:26:48 +00:00

1 line
608 B
JavaScript

initSidebarItems({"struct":[["BitPacker1x","`BitPacker1x` is standard bitpacking : the integer representation over `b` bits are simply concatenated one after the other."],["BitPacker4x","`BitPacker4x` packs integers in groups of 4. This gives an opportunity to leverage `SSE3` instructions to encode and decode the stream."],["BitPacker8x","`BitPacker8x` packs integers in groups of 8. This gives an opportunity to leverage `AVX2` instructions to encode and decode the stream. One block must contain `256 integers`."]],"trait":[["BitPacker","Examples without delta-encoding ``` extern crate bitpacking;"]]});