Higher-Order Functions

/
Higher-order functions are the pendant to First-Class Functions because higher-order functions can take…
CharakteristikenFunktionaleProgrammierungFirstClassFunctionsEng

First-Class Functions

/
One of the characteristics of functional programming is first-class functions. First-class functions…
CharakteristikenFunktionaleProgrammierungEng

The Definition of Functional Programming

/
The definition of functional programming is relatively easy. Functional programming is programming with…
timeline.FunktionalInCpp17Cpp20Eng

Functional in C++17 and C++20

/
Which functional feature can we expect with C++17, and for which functional feature can we hope with…
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…
FunktionalTR1Cpp11Eng

Functional in TR1 and C++11

/
This post continues our journey through the functional features of classical, modern, and future C++.…
timeline.FunktionalEng

Functional in C++98

/
C++ is not a functional programming language, but you can program in a functional style. What are the…
ObjectOrientedGenericFunctional

Object-Oriented, Generic, and Functional Programming

/
C++ is not a functional programming language. C++ has its roots in procedural and object-oriented programming.…

Memory Pool Allocators by Jonathan Müller

/
After I have written a few posts about memory management in C++, I'm very glad to present Jonathan Müller,…
VergleichSpeicherstrategienEng

Pros and Cons of the various Memory Allocation Strategies

/
In C++ you have the choice between various memory allocation strategies. In addition to the frequently…