therocode
therocode
I'm leaning more towards the composition way (std::vector as a member instead of inherited) since inheriting from standard containers is commonly seen as bad practice, and I think this will...
I think it's a bit of a false dichotomy to claim that a type either needs encapsulation/invariants or that it's useless. Aggregates are a thing and they are often useful...
I don't agree that `expected` type VS `exceptions` is a matter of complexity VS simplicity where `exceptions` is the simple one. Both can have simple APIs and both are equally...
Some thoughts on the path to whatever ends up the desired goal. Atm SFML is at "run `t.load` on uninitialised `T`, and return `bool`" which we all seem to agree...
I'd also find this highly useful. I think you can achieve this through a workarond of setting the wasm-pack release profile values to correspond to a profile build in Cargo.toml:...
I tripped over this one as well. It became extra confusing when `glm::convert(brick_size) * brick_spacing` works, which I added because one was IVec and the other Vec. I assume the...
I can only re-iterate a bit from the previous summary. The error handling style of a library is a pretty fundamental choice and should IMO be compatible with the long-term...
Nope but it's an interesting idea
Did you only have errors with cargo web? I was able to get it to work with just cargo, on Linux