Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hmm. This one fails with the same exact error: https://github.com/cucumber/cucumber-cpp. How probable is it that *nobody* really uses the wire protocol and it was not tested and it is a...
I'll have a look if I could tweak the API somewhat and come up with something that works without the specification. But I'm afraid I won't get to it that...
> By the way, I have a question: why are we creating a bounded(100) channel rather than unbounded() My guess is, bounded channels are considered the „default“ and unbounded are...
It means that some *instances* of the signals might be dropped. But you'll always get at least one of each kind ‒ so if someone sends you 950* SIGINT and...
This does sound like a bug, yes. But can you explain how this is unsound? As in, is there an undefined behavior involved anywhere?
Yeh, that statement from him implicitly contains „Cannot be misused _in safe rust_“ ‒ or at least, that's how I read the whole post and how most of the Rust...
That solution is interesting, I'll keep that at hand. I'm still thinking if I can actually make the nested Option work, instead of forbidding it. Not sure what it would...
> There aren't enough unused pointer values to encode those. Actually, I'm starting to think there are 😈. The pointers that come from Arc and Rc are necessarily aligned (because...
I'm not sure how soon I'll get around to the experiments. So I'll write down few notes that could help if someone is to try this out: # The unaligned...
I'm digging through the code. So far, I've come to a conclusion it is possible using the unaligned address trick and a plan how it could be done. So far...