pub fn bytes_to_bits(v: &[i64]) -> Vec<bool>
Expand a byte column to its LSB-first bit sequence (bit j of byte i is (byte_i >> j) & 1).
j
i
(byte_i >> j) & 1