1 follower
I'm a C++ and Rust developer interested in systems and GUI programming, modern programming techniques, and evolution of safe, reliable development practices.
Subscribe to my newsletter and never miss my upcoming articles
Introduction In part 1 of this article I described the constexpr feature, a C++ facility to perform compile-time evaluation. In this part, I describe the how to write a library for compile-time (and runtime) parsing of CSV files called Csv::Parser: h...
Introduction In part 1 of the article I discuss the constexpr feature as it's specified in C++17 and C++20. In part 2 I describe the steps I took to write a library for compile-time (and runtime) parsing of CSV files called Csv::Parser: https://githu...
Introduction When working on a cross-platform C++ or C project, it is easy to get confused by platform differences and scattered information. Writing, compiling, and using shared libraries in a cross-platform manner with a modern build system is one ...