//! Bitshuffle+LZ4 composite codec (id 0x0F): bit-transpose then LZ4.
//!
//! BitShuffle moves the high-correlation bits of numeric data into
//! contiguous byte lanes; LZ4 then compresses the long same-bit runs.
//! Suited to low-entropy integer/bitmap-like arrays. Wire format is
//! the shared composite pipeline with the filter's self-describing
//! prefix inside the filtered stream.
use cratecomposite;
use crateCODEC_BITSHUFFLE_LZ4;
/// Bitshuffle+LZ4 composite as an instance of
/// [`FilterCodecComposite`](crate::codec::composite::FilterCodecComposite).
pub type BitshuffleLz4Codec = FilterCodecComposite;
/// BitShuffle (default item_size) + LZ4.