Top "Std-function" questions

A C++11 class template that is callable like a function, and wraps another callable type and forwards calls to it.

How should I define a std::function variable with default arguments?

To set a std::function variable to a lambda function with default argument I can use auto as in: auto …

c++ c++11 lambda std-function
Functional programming in C++. Implementing f(a)(b)(c)

I have been getting into the basics of functional programming with C++. I am trying to make a function f(…

c++ c++11 functional-programming currying std-function
assigning lambda to std::function

Why is the 2nd assignment allowed, when the inferred return type is std::nullptr_t? With function pointers this is …

c++ lambda c++11 implicit-conversion std-function
Get the name of a std::function

In the following toy-example, I would like to get the name of a function. The function itself was given as …

c++ c++11 std-function
A parallel for using std::thread?

I'm new with std::thread and I try to code a parallel_for. I coded the following thing: // parallel_for.…

c++ c++11 parallel-processing std-function stdthread