Explore >> Select a destination


You are here

gsomix.github.io
| | mschaef.com
14.3 parsecs away

Travel
| |
| | ketansingh.me
11.5 parsecs away

Travel
| | A place for me to share my thoughts, experiences, and insights on technology relevant to enthusiasts and hackers like myself
| | www.foonathan.net
13.7 parsecs away

Travel
| | 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...
| | andreabergia.com
85.6 parsecs away

Travel
| This post is part of the Writing a JVM in Rust series. I have written a JVM in Rust ??thispost A JVM in Rust part 2 - The class files format A JVM in Rust part 3 - Parsing class files A JVM in Rust part 4 - The Java bytecode A JVM in Rust part 5 - Executing instructions A JVM in Rust part 6 - Methods and exceptions A JVM in Rust part 7 - Objects and GC A JVM in Rust part 8 - Retrospective Lately Ive been spending quite a bit of time learning Rust, and as any sane person would do, after writing a few 100 ...