|
You are here |
www.fluentcpp.com | ||
| | | | |
commaok.xyz
|
|
| | | | | Words about Go and software | |
| | | | |
anthonysciamanna.com
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | 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... | ||