N00byEdge

Results 72 comments of N00byEdge

@SpexGuy Would you prefer `pub const DynamicBitSetUnmanaged = DynamicBitSetCustomUnmanaged(usize);`?

As I think you may be sleeping at this time, I will just implement that API since I think it's a lot nicer, but feel free to disagree and I...

I went with Spex' names instead after Luuk chimed in

That CI fail looks unrelated, right?

Yeah, I considered not breaking the API as a decently sized plus as most users won't care about this, but I'm not sure compat for the sake of compat is...

I don't want to spend too much time on bikeshedding here, I changed the names back to what I think was better.

Or a slight variation: Add a return block which is the only place for return location pointers to be accessed ``` const T = struct { alloc: std.mem.allocator, buffer: [128]u8,...

Alternative syntax with return blocks (but same semantics) ``` return |*return_location| { // ... }; ``` ![2022-07-26-20:22:48](https://user-images.githubusercontent.com/2322546/181082684-9903528a-4f95-4aa5-85d0-6069ff66f6d7.png)

@rbino I'm pretty sure you can't use `u1` et al for mmio anyways, since you usually need to write e.g. an entire 32 bit regsiter at a time. I made...