Skip to main content

tac_bytes

Function tac_bytes 

Source
pub fn tac_bytes(
    data: &[u8],
    separator: u8,
    before: bool,
    out: &mut impl Write,
) -> Result<()>
Expand description

Reverse records separated by a single byte. For large data (>= 64MB): parallel forward SIMD scan + zero-copy IoSlice output. For small data: single-threaded backward SIMD scan + IoSlice batches.