mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-04 23:05:00 -04:00
75b48ef503
When `std.mem.indexOf` is called with a single-item needle, use `indexOfScalarPos` which is significantly faster than the more general `indexOfPosLinear`. This can be done without introducing overhead to normal cases (where `needle.len > 1`).