You are here |
lambdaland.org | ||
| | | |
benhoyt.com
|
|
| | | | How I sped up GoAWK by switching from a tree-walking interpreter to a bytecode compiler and virtual machine interpreter. | |
| | | |
eli.thegreenplace.net
|
|
| | | | ||
| | | |
v8.dev
|
|
| | | | The V8 team believes that it is time to retire Octane as a recommended benchmark. | |
| | | |
www.foonathan.net
|
|
| | Let me share a useful insight with you: constexpr is a platform. Just like you write code that targets Windows or a microcontroller, you write code that targets compile-time execution. In both cases you restrict yourself to the subset of C++ that works on your target platform, use conditional compilation if your code needs to be portable, and execute it on the desired target platform. You can thus view constexpr as another platform you can target; it just so happens to be run by your compiler. This insig... |