David Roundy
David Roundy
No, there wouldn't be overhead, tinyset is optimized for size and for small values. I could do better for `u8`, e.g. always store a 32-byte dense bitmap when forced onto...
No, we don't have a way to do that. It wouldn't be hard to implement if you wanted to submit a pull request. David Roundy On Sun, Dec 3, 2023,...
I believe this is completed now. The API is a little different from what you had, but should work. :crossed_fingers:
Looks like you'll need to disable this feature for the MSRV test. I'd also like to see documentation of the feature, maybe a section on features in the readme?
It also just occurred to me that there might be a possibility of a much more compact and efficient storage, if your archive format were able to store just one...
Just checking in. It looks like this still fails tests?
This commit looks like it lacks documentation and tests. Both are needed for me to accept the pull request. I think that I can see the goal, which is to...
I've finally gotten around to taking a look at this, and it looks interesting. When I look at it, however, it seems like the borrow checker would prevent you from...
Just a check: can you confirm that you've run benchmarks and this makes a difference? How big a difference does it make, and under what kind of workload?
I'm wondering why https://docs.rs/hashbrown/0.11.2/hashbrown/hash_map/struct.HashMap.html#method.raw_entry_mut wouldn't have worked for this purpose? I don't like that the raw API describes itself as "unsafe and experimental". It seems like raw_entry_mut would give the...