|
You are here |
www.fluentcpp.com | ||
| | | | |
zverovich.net
|
|
| | | | | [AI summary] The author announces a new feature in the fmt C++ library that performs compile-time validation of format strings using modern constexpr support to improve code safety and usability. | |
| | | | |
www.softdevtube.com
|
|
| | | | | The onion architecture is not as well known as the 3-tier software architecture but is gaining a lot of attention during the microservices era. It structures your software so that it is easy to change technologies without impacting business logic. Coupled with Domain Driven Design (DDD) principles it offers a powerful way to build a | |
| | | | |
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. | |
| | | | |
www.linfo.org
|
|
| | | [AI summary] This article compiles programming quotations from notable figures in the field, highlighting insights on software development, programming languages, and the nature of coding. | ||