David Roundy
David Roundy
BTW if you just want a 3D vector type that works well with dimensioned, you could try https://crates.io/crates/vector3d Which I created for that purpose.
I can't think of something better than unsafe. I think unsafe is sometimes used in rust even when memory safety is not at issue (but only correctness). I think that...
I think a dimensionless your is valuable because when you've got an `f64` it may or may not actually hold a dimensional value, e.g. a distance a user provided. If...
That sounds rather heavy. I gather this is not optimized in any way for small sets? My problem is that I anticipate that for every large N set, there will...
I wasn't thinking of different densities, but rather of the size of a set containing zero, one, or
It's not just the allocated heap storage, but also the "stack" storage, which is likely also on the heap. Looks like an empty BTreeMap is 24 bytes. I expect adding...
I'm looking to add miri to my GitHub ci and am wondering if anyone here can point to an example?
It's a little hard to say what precisely the API should look like in the absence of documentation of the current API. I'm just thinking of something like: ``` trait...
You already have the same mutable functions hiding mutable state (i.e `FnMut`) right? I guess you don't want the view function to mutate, based on your comment about mutable functions?...
This happens fairly regularly. Here is another output from a crash: ``` Underrun occured: -EPIPE, attempting recover ALSA lib pcm.c:8545:(snd_pcm_recover) underrun occurred Underrun occured: frames_writen != frames_to_deliver, attempting recover Underrun...