• Joined on 2025年12月14日
fbstj commented on pull request ziglang/zig#35268 2026年05月10日 19:18:51 +02:00
math.big.int: Improvements to division in the n by 1 case

tis on the comment for llcmp

fbstj commented on pull request ziglang/zig#35268 2026年05月10日 10:55:28 +02:00
math.big.int: Improvements to division in the n by 1 case

this needs updating

fbstj commented on pull request ziglang/zig#31344 2026年02月26日 22:29:10 +01:00
Fix: compiler_rt does not conform to the zig-libc-test math tests

is there a reason to be bool here over an enum of some kind that self-documents?

fbstj commented on pull request ziglang/zig#31248 2026年02月16日 21:09:07 +01:00
Improve std.sort.binarySearch's return type, fix std.sort functions to adhere to their documentation

would returning union(enum) { found: usize, next: usize } be more idiomatic?

fbstj commented on pull request ziglang/zig#31195 2026年02月13日 18:58:40 +01:00
std.math.atan: Add @Vector(?,f32) and @Vector(?,f64) support

is there a reason this is anytype instead of hoisting the vec_len out before the call and passing fn atanBinary32Vec(vec_len, x: @Vector(vec_len, f32) or something?