Wooster

Results 58 issues of Wooster

This is a proposal to promote [`std.math.divCeil`](https://github.com/ziglang/zig/blob/38fc826a5a82bbe11a893be11d3cc1439c477ee8/lib/std/math.zig#L959-L980) to a `@divCeil` builtin. This discussion is very relevant: https://github.com/ziglang/zig/pull/15879#discussion_r1208557275 The main reason here would be that if we have `@divExact`, `@divFloor`, and...

I would argue that the input of 0 can happen pretty often and mathematically it makes more sense to actually return false rather than assert that the input can't be...

I noticed these things (see commits) when I was working on some other things. Let me explain the `std.builtin.StackTrace: don't print extra newline after stack trace` commit more: Currently there...

This **removes** `std.builtin.Version` in favor of `std.SemanticVersion`. I don't think this is something that belongs in std.builtin. * This avoids the confusion when you don't know which of the two...

**It is highly recommended you read the commit descriptions**. A lot of information in these commit descriptions. The main focus here was fixing the fact that `std.os.exit` is not appropriately...

### Zig Version 0.11.0-dev.3704+729a051e9 ### Steps to Reproduce and Observed Behavior ```zig fn main() anyerror!noreturn { return error.a; } test { switch (@typeInfo(@typeInfo(@TypeOf(main)).Fn.return_type.?)) { .ErrorUnion => { const result =...

bug

Do `zig init-exe` and put something like ```zig const x = [1]u8{ .{ ` }, }; ``` in it and run `zig build`. You'll see: ``` zig build-exe x Debug...

I wasn't sure which place this exactly should go but maybe it's fine to put it there.

Addresses https://github.com/ppy/osu/discussions/23787 I originally wanted to set `allowShowingResults` to false (i.e. hide the "View results" button) if there are no results but because this involves an API request to fetch...

size/M

Implements https://github.com/ppy/osu/discussions/25003 but in a way that makes it more general and not as user-specific (https://github.com/ppy/osu/discussions/25003#discussioncomment-7181940). As a 100% dim user, I can totally see myself using this when I...

size/M