Arnaud de Bossoreille
Arnaud de Bossoreille
We could even optionally remove the "new_" prefix entirely for enums.
Wouldn't the following work? Add a generic param `T: Add + Sub + Mul + Div` and let Rust do the rest? For the `Vec` case (or whatever complex type...
That gives a broader view of the problem to solve. I confess I integrated `fasteval` very quickly in replacement of `meval` which works but is rather old and constrained (in...
That was awesomely easy. One single commit: - https://github.com/arnodb/bulletml_rs/commit/3f210bb2b2314368b6df58f894ad6eb53dbb926f#diff-258c0555e6f9c4bc4fba3a551d81638aL476 for the parsing (which is way better now) - https://github.com/arnodb/bulletml_rs/commit/3f210bb2b2314368b6df58f894ad6eb53dbb926f#diff-00b87ecf1e2e4952a3033cefe980a8bcL941 for the evaluation Thanks to a slightly better design, I removed...
`HashMap` vs. `BTreeMap`: good point. Although, in theory, `HashMap` is supposed to be faster for some operations at the (rather high) cost of memory consumption whereas `BTreeMap` is more memory...
Hi, I have a similar issue with form fields. `Option` used to return `None` when field is absent in Rocket 0.4 but now fails in Rocket 0.5. Do you confirm...