InKryption
InKryption
Closes #12821. Note: stage1 still does this.
### Zig Version 0.10.0-dev.3981+60678f5ba ### Steps to Reproduce ```zig const std = @import("std"); pub fn main() void { // add explicit type annotation, like // `std.meta.Tuple(&.{ u7, u7, u7, u7...
Should address #13247; this doesn't make `enumValue` or `shuffle` consistent across architectures, but it does allow one to use the alternative function to specify an integer with a bit width...
This doesn't make any breaking changes to the API, but it does add capabilities and change some behaviors, namely it adds the ability to add a type as an option,...
As the name implies, passing this flag will stop tests from running when invoking `odin test`, only outputting the binary. This change also makes some small style adjustments for consistency,...
Either need to port the rpmalloc-benchmark code to zig, so we can compare performance without having to link libc to the benchmarking code, or develop/integrate a benchmark that is easy...
### Zig Version 0.14.0-dev.224+95d9292a7 ### Steps to Reproduce and Observed Behavior Consider this code, which yields an unreachable code error: ```zig @compileError("foo"); return; ``` and then consider this extremely similar,...
If the library isn't actually installed, `generated_bin` will be null, causing this to panic about a missing dependency for itself; checking for this state avoids this.
`char` in the specification is described as being encoded as a `u32`: https://github.com/bincode-org/bincode/blob/55fd02934cff567ce1b2ff9d007608818ea6481b/docs/spec.md?plain=1#L58 But it appears that the actual implementation just encodes and decodes them as multi-byte UTF-8 codepoint sequences:...