Lucas Santos
Lucas Santos
### Zig Version 0.14.0-dev.367+a57479afc ### Steps to Reproduce and Observed Behavior main.zig ```zig const std = @import("std"); pub fn main() void { const a: [4096]u8 = undefined; std.mem.doNotOptimizeAway(a); } ```...
PR [19271](https://github.com/ziglang/zig/pull/19271) added some static function implementations from kernel32, but some parts of the library still used the dynamically loaded versions.
Improves documentation of `pdq` and other sorting functions. Adds tests to `pdq` and related functions. Refactors `partition` and `partitionEqual`. These functions had some duplicated logic, that wasn't optimized away. This...