Stephan Hageboeck

Results 35 comments of Stephan Hageboeck

Some things that could be part of this exercise: - Type promotion - Operator precendence - Braces - Pitfalls with precendence?

```c++ x *= 2.; // Promotes to double x / 2; // might truncate? ```

It's fine for me personally. I think it's more work than you think, though, so it would have to be distributed quite well. Just going through the first few subsections...

Hello @krishnasingh-09, that's great to hear, go for it! We will be happy to review once it's done!

I think that is a good compromise. Unfortunately, you cannot use the `initializer_list` syntax as I was hoping: https://godbolt.org/z/4szszTv4v It works if you call it a bit more explicitly, though:...

It doesn't work, unfortunately, because overload resolution cannot disambiguate between the `TGraph(TVectorD` and `TGraph(TVectorF` cases. Nevertheless, with #9968 merged, one can write: ```c++ TGraph gr(TVectorD{1., 2., 3.}, {1., 2., 3.});...

Hi, I find this idea great, but from the name "nanbox" I expected that `std::isnan(nanbox_from_double(3.).as_double)` actually *is* a `nan`. It's not. When you dump it, its `0100000000001111000000000000000000000000000000000000000000000000` That's probably also...

@phsft-bot build

It should boil down to something like 1. Inside the root directory of the website project, run `bash .github/scripts/generateBuildOptions.sh [branches ...]`. This will put the markdown tables for all branches...