/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.fluentcpp.com
| | mklimenko.github.io
5.7 parsecs away

Travel
| | Introduction Benchmarking first Creating a library Delayed library loading Generating multiple libraries Detecting the processor architecture at runtime Using the library
| | gpfault.net
2.4 parsecs away

Travel
| | [AI summary] The article discusses implementing a type map in C++ for associating values with types, covering compile-time and runtime solutions, with a focus on improving safety and convenience in entity-component systems.
| | eyakubovich.github.io
2.7 parsecs away

Travel
| | Suppose we need to write a factory function that constructs a runtime polymorphic object. For the purposes of this post, let's say we want to construct a concrete shape object - a rectangle, triangle, or an ellipse. Here are our basic declarations: 1 2 3 4 5 6 7 8...
| | www.fluentcpp.com
26.3 parsecs away

Travel
| There is a particular case for default parameters: it's when their type is a template type. Read on to see how to get this right.