N00byEdge
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...
Should I change it back then?
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| { // ... }; ``` 
@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...