pub fn count_lwb_parallel(data: &[u8], utf8: bool) -> (u64, u64, u64)Expand description
Parallel counting of lines + words + bytes only (no chars).
Optimized for the default wc mode: avoids unnecessary char-counting pass.
C locale: single fused pass per chunk counts BOTH lines and words.
UTF-8 with pure ASCII data: falls back to parallel C locale path.