Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello I've noticed there's a (closed) issue about having a `From` impl, that refers to wanting that from `std` (#66) But would it make sense to have an explicit constructor...
Hello It seems the bumpalo's Box doesn't implement [CoerceUnsize](https://doc.rust-lang.org/std/ops/trait.CoerceUnsized.html), like the [usual `Box` does](https://doc.rust-lang.org/std/boxed/struct.Box.html#impl-CoerceUnsized%3CBox%3CU%2C%20A%3E%3E). I'm not sure how one _should_ be able to create upcastable smart pointers, as that's a...
I noticed that some methods return `Vec`s. In particular, it's `stride` and `scalar_collect`. I was wondering if it made sense to expose generic version that could use arbitrary `FromIterator` type....
It is quite common for debian packages to have a split package with debug info. The main package contains stripped binaries, but there's a package with the -dbg suffix that...
This is somewhat open-ended task. There was nearly no performance analysis done and certainly no optimisation. We want to do some research in that area: - [ ] Write some...
Currently, the end data node is an array (well, SmallVec). It *usually* contains only a single element. In case we have a collision on the whole length of 64bit hash,...
It would be nice if a user could customize the branching factor. Currently, the branching factor is configured by constants at the top of `raw/mod.rs` (`LEVEL_BITS`, `LEVEL_MASK`, `LEVEL_CELLS`, `MAX_LEVELS`). The...
This is the more interesting part of rayon support (see #3), iterating through the maps and sets. It'll require some research around how exactly iterators for rayon work (`src/iter/map.rs` and...
Currently, the structures don't allow snapshots or consistent iteration through them. This makes the code simpler and *probably* a bit faster (though that is hard to confirm without a way...
If I understand it correctly, the coroutines here can move from thread to thread. Now imagine I have something that is not `Send` for whatever reason. And I don't mean...