Faking keyword arguments to functions in C++
Summary
The article compares Python keyword arguments with a C++ workaround, showing how to emulate keyword-like APIs using designated initializers and in-place struct construction. It discusses historical attempts via macros and Boost.Parameter, and provides a practical approach to 'fake' keyword arguments in modern C++. The tone is practical and slightly playful about the feasibility of keyword arguments in C++.