Posts

Cpp23

Ranges Improvements with C++23

/
Thanks to C++23, constructing containers will become more convenient. Additionally, the ranges library…

C++20: Python’s map Function

/
Today, I finish my experiment writing beloved Python functions in C++. So far, I have implemented the…

C++20: Pythons range Function, the Second

/
In my last post, C++20: Pythonic with the Ranges Library, I started my experiment to implement the beloved…

C++20: Pythonic with the Ranges Library

/
Today, I start an experiment. I want to implement beloved functions in Python in C++ using the ranges…
lazy

C++ is Lazy: CRTP

/
In my previous post, Recursion, List Manipulation, and Lazy Evaluation, I wrote about the characteristics…
timeline.FunktionalInCpp11Cpp14Eng

Functional in C++11 and C++14: Dispatch Table and Generic Lambdas

/
My favorite example, the dispatch table, shows how nicely the features in modern C++ work together. A…