Eli Rosenthal

Results 3 issues of Eli Rosenthal

frawk makes particular use of AVX2 instructions; with custom routines that use runtime feature detection. In addition to that, frawk compiles with `-C native` by default, which leads to emitting...

Today, frawk supports awk-style splits that populate an array with all of the relevant sub-strings in an (optional) separator. It would be both more succinct and more efficient to support...

The following code exits cleanly using hashbrown 0.9.1, but fails on hashbrown 0.10 ``` use hashbrown::HashSet; fn main() { let mut m = HashSet::::new(); m.insert(Box::from(&b"hello"[..])); assert!(m.contains(&b"hello"[..])); } ``` Lookup of...