Explore >> Select a destination


You are here

nelari.us
| | mpark.github.io
6.2 parsecs away

Travel
| | An anecdote about surprising implementation challenges of `FUN`.
| | www.foonathan.net
3.4 parsecs away

Travel
| | Just like regular function parameters, template parameters can also have default parameters. For class templates, this behaves mostly just like default function arguments: if you pass fewer template arguments than required, default template arguments are used to fill the remaining places. However, for function templates, it gets more complicated as template parameters for functions can be deduced by the normal function arguments. This leads to some interesting side-effects. In particular, default argumen...
| | eyakubovich.github.io
5.9 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...
| | infinitedigits.co
31.8 parsecs away

Travel
| A simple way to get MIDI and Golang work together using portmidi.