/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
| | commaok.xyz
3.8 parsecs away

Travel
| | Words about Go and software
| | anthonysciamanna.com
5.3 parsecs away

Travel
| | Code katas provide an opportunity to practice our software development skills, recognize patterns, and learn how to apply techniques. In general, we pro...
| | www.foonathan.net
2.3 parsecs away

Travel
| | The size of std::array is known at compile-time given the type. Yet it only provides a regular .size() member function: template struct array { constexpr std::size_t size() const { return N; } }; This is annoying if you're writing generic code that expects some sort of compile-time sized range.
| | kristerw.blogspot.com
17.3 parsecs away

Travel
| Signed integers are not allowed to overflow in C and C++, and this helps compilers generate better code. I was interested in how GCC is tak...