dmit
dmit
FWIW: `min_const_generics` will land in 1.51, in March. Also, the recently merged rust-lang/rust#73996 should help make `typenum` types less verbose in error messages. Although it will do nothing to help...
Another detail is line wrapping of RTL text. In the refterm v2 video, when the window is shrunk, RTL text is wrapped using the same approach as LTR: fit as...
Prepending a `+` to an sbt command performs it for all targets: `sbt +clean +compile`. Double plus specifies a single Scala version to use: `sbt "++2.13.0-M5 compile"`. Since 2.12 is...
Added instructions on how to run these benchmarks on different versions to the README. Also, I don't have access to hardware where I can run the whole benchmark suite without...
I think the main case for `Vector` in Scala
Absolutely, if access is read-only. But if each thread/execution context needs to make minor changes to its copy of the collection, then arrays quickly get too expensive memory-wise. Speaking of...
Would this bring back `gen_range` for the new `Gen` struct, or offer an equivalently powerful solution? Previously the `Gen` trait inherited `gen_range` from the underlying `rand::Rng`, but now that it's...
As far as I can tell, making existing private methods on `Gen` public doesn't expose `rand` as a dependency. They mirror `rand`'s signatures, but don't leak any implementation details. But...