Filip Sajdak
Filip Sajdak
@hsutter I am okay with leaving it/as for the variant unrolled. I appreciate your work on cppfront, and I am doing my Best to support your goals. If my current...
Thanks for the feedback. I assumed that you are preparing for the Kona meeting and I am not expecting that you will process these PRs at the moment. I hope...
We can brainstorm on the keyword name to make it clear. Let's first agree on the general idea of how to tackle that cases.
Thanks to @feature-engineer I decided to play with exclamation marks and question marks. I don't like `as!` or `as?` - what I like with the pure `as` is that you...
Ok. Will read that through.
Continuing my experiments with the syntax I have pushed the new update that allows using two syntaxes: ```cpp pass(x as std::uint8_t?); pass(x as std::uint8_t!); pass(x as std::uint8_t); ``` or ```cpp...
Yes, you are right. I did the experiments and came to that conclusion as well. To be honest I am waiting for a feedback from Herb as I don't know...
One thing I have learned is that we probably want to have default version that is statically checked on compile time. If that is not working than we shall be...
I was not thinking about runtime assertions but static assertions that will make your build to fail. No impact on runtime error handling. It should prevent developer from writing potentially...
I have done more experiments and tests around that topic. I like the idea of having default `as` as strict as possible that ends with a static assertion if it...