SlideShare a Scribd company logo
The present and the future of functional programming in c++
The Present and The Future
of Functional Programming in C++
Alexander Granin
graninas@gmail.com
C++ Siberia 2019
The present and the future of functional programming in c++
Eric Niebler, C++ Siberia 2015
Ranges for the Standard Library
Eric Niebler, C++ Siberia 2015
Ranges for the Standard Library
Bartosz Milewski, С++ User Group 2014
Re-discovering monads in C++
Eric Niebler, C++ Siberia 2015
Ranges for the Standard Library
Bartosz Milewski, С++ User Group 2014
Re-discovering monads in C++
Ivan Čukić, C++ Siberia 2017
Atom heart monad (FRP in C++)
My talks about Functional Programming in C++
С++ User Group 2014
Functional and Declarative Design in C++
My talks about Functional Programming in C++
С++ User Group 2014
Functional and Declarative Design in C++
С++ Siberia 2015
Functional Microscope: Lenses in C++
My talks about Functional Programming in C++
С++ User Group 2014
Functional and Declarative Design in C++
С++ Siberia 2015
Functional Microscope: Lenses in C++
С++ Russia 2016
Functional “Life”: Parallel Cellular Automata and Comonads in C++
С++ User Group 2014
Functional and Declarative Design in C++
С++ Siberia 2015
Functional Microscope: Lenses in C++
С++ Russia 2016
Functional “Life”: Parallel Cellular Automata and Comonads in C++
С++ Russia 2018
Functional Approach to Software Transactional Memory in C++
My talks about Functional Programming in C++
struct Presentation
{
Philosophy of Functional Programming in C++
Elements of Functional Programming in C++
Functional Design, Patterns and Approaches In C++
Limitations of Functional Programming in C++
};
Philosophy
of Functional Programming in C++
What is Programming?
instructions, jumps, loops
-- unstructured programming
14
instructions, jumps, loops
sequence, selection, iteration
-- unstructured programming
-- structured programming
15
instructions, jumps, loops
sequence, selection, iteration
declaration, application, recursion
-- unstructured programming
-- functional programming
-- structured programming
16
class A {}
template<>
constexpr
#define
procedural programming
metaprogramming
functional programming
object-oriented programming
int main()
17
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20Abstract C++ developer:
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20
C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20
Abstract C++ developer:
Real C++ developer:
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20
C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20
C++ -> WTF -> Go
Abstract C++ developer:
Real C++ developer:
Beginner C++ developer:
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20
C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20
C++ -> WTF -> Go
C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20
Abstract C++ developer:
Real C++ developer:
Beginner C++ developer:
Modern C++ developer:
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20
C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20
C++ -> WTF -> Go
C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20
C++ -> C++11/14 -> Uh-Oh -> Rust
Abstract C++ developer:
Real C++ developer:
Beginner C++ developer:
Modern C++ developer:
Tired C++ developer:
C++ Developer Evolution
C++ -> C++11/14 -> C++17/20
C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20
C++ -> WTF -> Go
C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20
C++ -> C++11/14 -> Uh-Oh -> Rust
C++98 -> Please, leave me alone -> C++98
Abstract C++ developer:
Real C++ developer:
Beginner C++ developer:
Modern C++ developer:
Tired C++ developer:
Old School C++ developer:
C++ Developer Evolution
Functional programming in my C++?!!
25
Verbosity of imperative and OO code FP data types and constructs
algebraic data types, higher order functions, lambdas, closures
pattern-matching, currying, partial application
Functional programming in my C++?!!
26
Verbosity of imperative and OO code
Unsafety, bugs and lack or guarantees
FP data types and constructs
Reliable FP concepts, guarantees
purity, immutability, side effects control, type level programming
recursion, range-based iteration, monoids, functors, monads...
Functional programming in my C++?!!
27
Verbosity of imperative and OO code
Unsafety, bugs and lack or guarantees
Leaking and heavy abstractions
FP data types and constructs
Reliable FP concepts, guarantees
Declarative and functional design
domain specific languages, persistent data types
laziness, composition, combinators, first class functions
Functional programming in my C++?!!
28
Verbosity of imperative and OO code
Unsafety, bugs and lack or guarantees
Leaking and heavy abstractions
Complexity of multithreaded programs
FP data types and constructs
Reliable FP concepts, guarantees
Declarative and functional design
Functional approaches
functional reactive programming, software transactional memory,
async / par / future monad, automatic parallelism
Functional programming in my C++?!!
29
Elements
of Functional Programming in C++
𝝺ambdas
[](auto i) { return i + 1; }
i -> i + 1
i => i + 1
lambda i: i + 1
| i | -> i + 1
𝝺ambdas in C++
<>(int x, int y) -> int {return x + y;}
[|b|]() { return |b| -> set_text("World"); }
i => i + 1
[](auto i) { return i + 1; }
[]<>(auto i) { return i + 1; }
𝝺ambdas in C++
Idea of the feature
Standard issuing
Feature adoption
Feature improvements
== You are standing here ==
Feature improvements
<>(int x, int y) -> int {return x + y;}
[|b|]() { return |b| -> set_text("World"); }
i => i + 1
[](auto i) { return i + 1; }
[]<>(auto i) { return i + 1; }
𝝺ambdas in C++
Idea of the feature
Standard issuing
Feature adoption
Feature improvements
== You are standing here ==
Feature improvements
2011
...2000...
2014, 2017
...2011...
2020
2019
<>(int x, int y) -> int {return x + y;}
[|b|]() { return |b| -> set_text("World"); }
i => i + 1
[](auto i) { return i + 1; }
[]<>(auto i) { return i + 1; }
Idea of the feature
Pondering and thinking
Reference implementation
Discussions in Committee
Drafting in Standard
Implementation in compilers
Standard issuing
Feature adoption
Feature improvements
== You are standing here ==
Feature improvements
𝝺ambdas in C++
2011
...2000...
<>(int x, int y) -> int {return x + y;}
[|b|]() { return |b| -> set_text("World"); }
i => i + 1
[](auto i) { return i + 1; }
[]<>(auto i) { return i + 1; }
2014, 2017
...2011...
2008 - 2011
2006 - 2008
2020
2019
What is 𝝺ambda?
And who is
𝝺ambdaman? 36
“ 𝝺ambda is just an object with operator() overloaded”
std::vector<int> v {4, 2, 4};
struct Summator
{
int sum = 0;
void operator()(int i) {
sum += i;
}
};
Summator summator = std::for_each(v.begin(), v.end(), Summator());
std::cout << summator.sum; // 10
37
“ 𝝺ambda is an anonymous function”
std::vector<int> v {4, 2, 4};
auto sum = 0;
std::for_each(v.begin(), v.end(), [&sum](int i) { sum += i; });
std::cout << sum; // 10
38
“ 𝝺ambda is an universal combinator”
auto I = [](auto x) {
return x;
};
auto K = [](auto x) {
return [=](auto y) {
return x;
};
};
auto S = [](auto x) {
return [=](auto y) {
return [=](auto z) {
return (x(z))(y(z));
};
};
};
Ix = x
Kxy = x
Sxyz = xz(yz)
39
𝝺ambdas evolution
auto mul2 = [](int i) { return i * 2; }
auto mul2 = [](auto i) { return i * 2; }
constexpr auto mul2 = [](auto i) { return i * 2; }
auto mul2 = []<typename T>(T i) { return i * 2; }
auto mul2 = i => i * 2;
C++11
C++14
C++17
C++20
C++??
Lambda expressions
Polymorphic lambdas
Constexpr lambdas
“Familiar” syntax
Abbreviated syntax
40
Purity and Immutability
41
Pure Functional Programming in C++
42
Knuth’s Up-Arrow Notation
43
Knuth’s Up-Arrow Notation
44
Knuth’s Up-Arrow Notation
45
Knuth’s Up-Arrow Notation
46
47
https://www.youtube.com/watch?v=PJwd4JLYJJY
constexpr ALL the Things!
Recursive constexpr pow() function
using UInt = uint64_t;
constexpr UInt pow(UInt a, UInt b) {
return b == 0
? 1
: a * pow(a, b - 1);
}
48
Recursive constexpr tower() function
using UInt = uint64_t;
constexpr UInt pow(UInt a, UInt b) {
return b == 0
? 1
: a * pow(a, b - 1);
}
constexpr UInt tower(UInt a, UInt b) {
return b == 0
? throw std::invalid_argument("b == 0")
: b == 1
? a
: pow(a, tower(a, b - 1));
}
49
Throwing exception at compile time?
using UInt = uint64_t;
constexpr UInt pow(UInt a, UInt b) {
return b == 0
? 1
: a * pow(a, b - 1);
}
constexpr UInt tower(UInt a, UInt b) {
return b == 0
? throw std::invalid_argument("b == 0")
: b == 1
? a
: pow(a, tower(a, b - 1));
}
50
Recurrent formula
51
constexpr UInt arr_impl(bool brackets_rec, UInt cnt, UInt a, UInt n, UInt b)
{
return brackets_rec
? (cnt == 0 ? ... ... ...) // recursion by brackets
: (n == 1
? pow(a, b)
: n == 2
? tower(a, b)
: arr_impl(true, b - 1, a, n - 1, a)); // recursion by arrows
}
Double recursion constexpr arr_impl() function
52
constexpr UInt arr(UInt a, UInt n, UInt b)
{
return arr_impl(false, 0, a, n, b);
}
constexpr UInt x1 = arr(3, 2, 3); // Compile-time evaluated
UInt x2 = arr(3, 2, 3); // Has to be compile-time evaluated
// 3 ↑↑ 3 = 7625597484987
Evaluation
53
Pure Template Functional Programming in C++
54
Template Pow “function”
template <UInt A, UInt N>
struct Pow
{
static constexpr UInt value = A * Pow<A, N - 1>::value;
};
template <UInt A>
struct Pow<A, 0>
{
static constexpr UInt value = 1;
};
55
Template Pow “function”
template <UInt A, UInt N>
struct Pow
{
static constexpr UInt value = A * Pow<A, N - 1>::value;
};
template <UInt A>
struct Pow<A, 0>
{
static constexpr UInt value = 1;
};
56
“Pattern matching”
“Recursion”
Template Tower “function”
template <UInt A, UInt B>
struct Tower
{
static constexpr UInt value = Pow<A, Tower<A, B - 1>::value>::value;
};
template <UInt A>
struct Tower<A, 1>
{
static constexpr UInt value = A;
};
57
Template ArrImpl “function”
template <bool brackets_rec, UInt C, UInt A, UInt S, UInt B>
struct ArrImpl
{
static constexpr UInt value = 1;
};
template <UInt C, UInt A, UInt S, UInt B>
struct ArrImpl<true, C, A, S, B>
{
static constexpr UInt value
= ArrImpl<false, 0, A,
ArrImpl<true, C - 1, A, S, B>::value,
S>::value;
};
... // More template code 58
“Evaluation”
template <UInt A, UInt S, UInt B>
struct Arr
{
static constexpr UInt value = ArrImpl<false, 0, A, S, B>::value;
};
auto result = Arr<3, 2, 3>::value; // 3 ↑↑ 3 = 7625597484987
59
Template ⇨ constexpr = 👍
template <UInt A, UInt S, UInt B>
struct Arr
{
static constexpr UInt value = arr_impl(false, 0, A, S, B);
};
60
Constexpr ⇨ template = ☠
template <UInt A, UInt S, UInt B>
struct Arr
{
static constexpr UInt value = arr_impl(false, 0, A, S, B);
};
// Won’t compile:
constexpr UInt arr(UInt a, UInt s, UInt b)
{
return ArrImpl<false, 0, a, s, b>::value;
}
61
Constexpr ⇨ template = ☠
template <UInt A, UInt S, UInt B>
struct Arr
{
static constexpr UInt value = arr_impl(false, 0, A, S, B);
};
// Won’t compile:
constexpr UInt arr(UInt a, UInt s, UInt b)
{
return ArrImpl<false, 0, a, s, b>::value;
}
62
Dependent types??
template <UInt A, UInt S, UInt B>
struct Arr
{
static constexpr UInt value = arr_impl(false, 0, A, S, B);
};
template <UInt A, UInt S, UInt B>
constexpr UInt arr()
{
return ArrImpl<false, 0, A, S, B>::value;
}
Template constexpr!
63
* * *
64
65https://www.youtube.com/watch?v=iWDjoD3MdXs
expected<T, E>: Proposal P0323R2
expected<double, error_condition>
safe_divide(double i, double j)
{
if (j == 0)
{
return make_unexpected(arithmetic_error::divide_by_zero);
}
else
{
return i / j;
}
}
66
template <typename T, typename E>
using Expected = std::variant<T, E>;
enum class Errors {
ZeroTowerError = 0,
ZeroDivisionError = 1
};
using UInt = uint64_t;
using SafeInt = Expected<UInt, Errors>;
constexpr SafeInt make_pure (const UInt& v) { return { v }; }
constexpr SafeInt make_error(const Errors& e) { return { e }; }
Custom Expected<T, E>
67
Sum type using std::variant
template <typename T, typename E>
using Expected = std::variant<T, E>;
enum class Errors {
ZeroTowerError = 0,
ZeroDivisionError = 1
};
using UInt = uint64_t;
using SafeInt = Expected<UInt, Errors>;
constexpr SafeInt make_pure (const UInt& v) { return { v }; }
constexpr SafeInt make_error(const Errors& e) { return { e }; }
Custom Expected<T, E>
68
Supported errors & alias
template <typename T, typename E>
using Expected = std::variant<T, E>;
enum class Errors {
ZeroTowerError = 0,
ZeroDivisionError = 1
};
using UInt = uint64_t;
using SafeInt = Expected<UInt, Errors>;
constexpr SafeInt make_pure (const UInt& v) { return { v }; }
constexpr SafeInt make_error(const Errors& e) { return { e }; }
Custom Expected<T, E>
69
Constructors
std::variant<UInt, Errors> val = make_pure(10);
UInt result = std::holds_alternative<UInt>(val)
? std::get<UInt>(val)
: throw std::runtime_error("Error got.");
Extracting values of variant<>
70
Pattern Matching?
struct SafeIntVisitor
{
void operator()(const UInt& i) { cout << "Result: " << i; }
void operator()(const Errors& e) { cout << "Error: " << e; }
};
std::visit(SafeIntVisitor(), val);
inspect (val)
{
<UInt> i: cout << "Result: " << i;
<Errors> e: cout << "Error: " << e;
};
71
Visiting std::variant
Pattern Matching!
struct SafeIntVisitor
{
void operator()(const UInt& i) { cout << "Result: " << i; }
void operator()(const Errors& e) { cout << "Error: " << e; }
};
std::visit(SafeIntVisitor(), val);
inspect (val)
{
<UInt> i: cout << "Result: " << i;
<Errors> e: cout << "Error: " << e;
};
72
Pattern matching
Proposal P1260R0
Object-oriented programming is an exceptionally bad
idea which could only have originated in California.
-- Edsger Dijkstra
73
Functional Design,
Patterns and Approaches in C++
Monadic error handling with Expected<T, E>
template <typename T, typename E>
using Expected = std::variant<T, E>;
enum class Errors {
ZeroTowerError = 0,
ZeroDivisionError = 1
};
using UInt = uint64_t;
using SafeInt = Expected<UInt, Errors>;
constexpr SafeInt make_pure (const UInt& v) { return { v }; }
constexpr SafeInt make_error(const Errors& e) { return { e }; }
75
UInt pow(UInt a, UInt n) { ... }
UInt tower(UInt a, UInt b) {
return b == 0
? throw std::invalid_argument("b == 0")
: b == 1
? a
: pow(a, tower(a, b - 1));
}
Unsafe tower() function
76
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? a
: pow(a, tower(a, b - 1));
}
safe_tower() function
77
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? a
: pow(a, tower(a, b - 1));
}
safe_tower() function
78
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? a
: pow(a, tower(a, b - 1));
}
safe_tower() function
79
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, tower(a, b - 1)));
}
safe_tower() function
80
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, tower(a, b - 1)));
}
safe_tower() function
81
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, tower(a, b - 1)));
}
safe_tower() function
82
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, safe_tower(a, b - 1)));
}
safe_tower() function
83
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, safe_tower(a, b - 1)));
}
safe_tower() function
84
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: make_pure(pow(a, safe_tower(a, b - 1)));
}
safe_tower() function
85
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: mbind(safe_tower(a, b - 1),
[=](UInt v) { return make_pure(pow(a, v)); }
);
}
Monadic binding*
86
* Almost
UInt pow(UInt a, UInt n) { ... }
SafeInt safe_tower(UInt a, UInt b) {
return b == 0
? make_error(Errors::ZeroTowerError)
: b == 1
? make_pure(a)
: mbind(safe_tower(a, b - 1),
[=](UInt v) { return make_pure(pow(a, v)); }
);
}
Monadic binding*
87
* Almost
SafeInt mbind (SafeInt, Func<SafeInt, UInt>)
mbind :: SafeInt -> (UInt -> SafeInt) -> SafeInt
template <typename T, typename E, typename Lambda>
SafeInt mbind(SafeInt safe_val, Lambda lambda)
{
return std::holds_alternative<E>(safe_val)
? safe_val
: lambda(std::get<T>(safe_val));
}
mbind() function
88
auto mul10 = [](UInt i) { return make_pure(i * 10); };
SafeInt v1 = safe_tower(2, 0);
SafeInt v2 = mbind(v1, mul10);
std::visit(SafeIntVisitor(), v1); // error : 0
std::visit(SafeIntVisitor(), v2); // error : 0
Monadic chaining*, error path
89
* Almost
auto mul10 = [](UInt i) { return make_pure(i * 10); };
SafeInt v1 = safe_tower(2, 3);
SafeInt v2 = mbind(
mbind(v1, mul10),
mul10
);
std::visit(SafeIntVisitor(), v1); // result: 16
std::visit(SafeIntVisitor(), v2); // result: 1600
Monadic chaining*, success path
90
* Almost
auto mul10 = [](UInt i) { return make_pure(i * 10); };
SafeInt v1 = safe_tower(2, 3);
SafeInt v2 = mbind(
mbind(v1, mul10),
mul10
);
SafeInt v2 = do {
UInt i1 <- safe_tower(2, 3);
UInt i2 <- mul10(i1);
return mul10(i2);
}
Monadic chaining*, do-notation dream
91
* Almost
mbind is hidden under “<-”
expected<int, Errors> safe_calculate(int a, int b) {
do {
UInt v <- safe_tower(a, b);
int r <- safe_divide(v, b);
return r;
}
}
Do-notation dreams
expected<int, Errors> safe_calculate(int a, int b) {
UInt v = try safe_tower(a, b);
int r = try safe_divide(v, b);
return r;
}
92
Haskell-like “do”
Proposal P0650R1
“C++ Monadic Interface”
MONADS
It’s what we like memes to be about
93
expected<int, Errors> safe_calculate(int a, int b) {
do {
UInt v <- safe_tower(a, b);
int r <- safe_divide(v, b);
return r;
}
}
Monads everywhere: expected<>
94
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
optional<int> same_age_persons_count(int personId) {
do {
Person p <- get(personId);
Persons ps <- find( [=](Person x){ return x.age == p.age; } );
return ps.size();
}
}
Monads everywhere: optional<>
95
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
mbind :: optional<A> -> (A -> optional<B>) -> optional<B>
future<int> calculate(int a, int b) {
do {
int x <- heavy_calc(a);
int y <- heavy_calc(b);
return heavy_calc(x + y);
}
}
Monads everywhere: future<>
96
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
mbind :: optional<A> -> (A -> optional<B>) -> optional<B>
mbind :: future<A> -> (A -> future<B>) -> future<B>
async<Result> request_person(int personId) {
do {
auto person <- request_person(personId);
auto confs <- request_conferences(personId);
bool saved1 <- save(person);
bool saved2 <- save(confs);
return {saved1 && saved2, person, confs};
}
}
Monads everywhere: async<> (coroutines?)
97
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
mbind :: optional<A> -> (A -> optional<B>) -> optional<B>
mbind :: future<A> -> (A -> future<B>) -> future<B>
mbind :: async<A> -> (A -> async<B>) -> async<B>
parser<Person> person() {
do {
_ <- many(space);
first_name <- name();
_ <- many(space);
last_name <- name();
return {first_name, last_name};
}
}
Monads everywhere: parser<>
98
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
mbind :: optional<A> -> (A -> optional<B>) -> optional<B>
mbind :: future<A> -> (A -> future<B>) -> future<B>
mbind :: async<A> -> (A -> async<B>) -> async<B>
mbind :: parser<A> -> (A -> parser<B>) -> parser<B>
* * *
99
100
https://www.youtube.com/watch?v=sPhpelUfu8Q
Postmodern immutable data structures
101
102
https://www.youtube.com/watch?v=mFUXNMfaciE
103
auto triples =
for_each(iota(1), [](int z) {
return for_each(iota(1, z+1), [=](int x) {
return for_each(iota(x, z+1), [=](int y) {
return yield_if(x*x + y*y == z*z,
make_tuple(x, y, z));
});
});
});
Pythagorean Triples in Ranges
104
auto triples =
for_each(iota(1), [](int z) {
return for_each(iota(1, z+1), [=](int x) {
return for_each(iota(x, z+1), [=](int y) {
return yield_if(x*x + y*y == z*z,
make_tuple(x, y, z));
});
});
});
Pythagorean Triples in Ranges
105
auto triples =
for_each(iota(1), [](int z) {
return for_each(iota(1, z+1), [=](int x) {
return for_each(iota(x, z+1), [=](int y) {
return yield_if(x*x + y*y == z*z,
make_tuple(x, y, z));
});
});
});
for(auto triple : triples | view::take(10)) {
cout << '('
<< get<0>(triple) << ','
<< get<1>(triple) << ','
<< get<2>(triple) << ')' << 'n';
}
Pythagorean Triples in Ranges
Output:
(3,4,5)
(6,8,10)
(5,12,13)
(9,12,15)
(8,15,17)
(12,16,20)
(7,24,25)
(15,20,25)
(10,24,26)
(20,21,29)
106
Pythagorean Triples in Ranges, reformatted
auto triples =
for_each(iota(1), [] (int z) { return
for_each(iota(1, z+1), [=](int x) { return
for_each(iota(x, z+1), [=](int y) { return
yield_if(x*x + y*y == z*z, make_tuple(x, y, z));
}); }); });
107
Looks familiar...
auto triples =
for_each(iota(1), [] (int z) { return
for_each(iota(1, z+1), [=](int x) { return
for_each(iota(x, z+1), [=](int y) { return
yield_if(x*x + y*y == z*z, make_tuple(x, y, z));
}); }); });
iota :: list<int>
for_each :: list<int> -> (int -> list<int>) -> list<int>
108
for_each → mbind...
auto triples =
mbind(iota(1), [] (int z) { return
mbind(iota(1, z+1), [=](int x) { return
mbind(iota(x, z+1), [=](int y) { return
yield_if(x*x + y*y == z*z, make_tuple(x, y, z));
}); }); });
iota :: list<int>
for_each :: list<int> -> (int -> list<int>) -> list<int>
mbind :: list<int> -> (int -> list<int>) -> list<int>
109
Monads, again??
auto triples =
mbind(iota(1), [] (int z) { return
mbind(iota(1, z+1), [=](int x) { return
mbind(iota(x, z+1), [=](int y) { return
yield_if(x*x + y*y == z*z, make_tuple(x, y, z));
}); }); });
auto triples =
do {
int z <- iota(1);
int x <- iota(1, z+1);
int y <- iota(x, z+1);
guard (x*x + y*y == z*z);
return make_tuple(x, y, z);
}
110
auto triples =
mbind(iota(1), [] (int z) { return
mbind(iota(1, z+1), [=](int x) { return
mbind(iota(x, z+1), [=](int y) { return
yield_if(x*x + y*y == z*z, make_tuple(x, y, z));
}); }); });
auto triples =
do {
int z <- iota(1);
int x <- iota(1, z+1);
int y <- iota(x, z+1);
guard (x*x + y*y == z*z);
return make_tuple(x, y, z);
}
Monadic Pythagorean Triples in Haskell
triples = do
z <- [1..]
x <- [1..z]
y <- [x..z]
guard (x*x + y*y == z*z)
pure (x, y, z)
111
It’s inevitable. This is terrifying.
mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> // error handling
mbind :: optional<A> -> (A -> optional<B>) -> optional<B> // absent values
mbind :: future<A> -> (A -> future<B>) -> future<B> // parallelism
mbind :: async<A> -> (A -> async<B>) -> async<B> // callback hell
elimination
mbind :: parser<A> -> (A -> parser<B>) -> parser<B> // parsing
mbind :: list<A> -> (A -> list<B>) -> list<B> // combinatorics
(kind of)
mbind :: reader<A> -> (A -> reader<B>) -> reader<B> // environment data
mbind :: writer<A> -> (A -> writer<B>) -> writer<B> // write-only data
mbind :: state<A> -> (A -> state<B>) -> state<B> // monadic state
mbind :: io<A> -> (A -> io<B>) -> io<B> // effects control
112
for(auto triple : triples | view::take(10)) {
cout << '('
<< get<0>(triple) << ','
<< get<1>(triple) << ','
<< get<2>(triple) << ')' << 'n';
}
Functional composition with ranges
Output:
(3,4,5)
(6,8,10)
(5,12,13)
(9,12,15)
(8,15,17)
(12,16,20)
(7,24,25)
(15,20,25)
(10,24,26)
(20,21,29)
113
for(auto triple : triples | view::take(10)
| view::transform(mul10_middle)) {
cout << '('
<< get<0>(triple) << ','
<< get<1>(triple) << ','
<< get<2>(triple) << ')' << 'n';
}
auto mul10_middle = [](const tuple<int, int, int>& t) {
const auto& [x, y, z] = t;
return make_tuple(x, y * 10, z);
};
Functional composition with ranges
Output:
(3,40,5)
(6,80,10)
(5,120,13)
(9,120,15)
(8,150,17)
(12,160,20)
(7,240,25)
(15,200,25)
(10,240,26)
(20,210,29)
114
for(auto triple : triples | view::take(10)
| view::transform(mul10_middle)
| view::reverse) {
cout << '('
<< get<0>(triple) << ','
<< get<1>(triple) << ','
<< get<2>(triple) << ')' << 'n';
}
auto mul10_middle = [](const tuple<int, int, int>& t) {
const auto& [x, y, z] = t;
return make_tuple(x, y * 10, z);
};
Functional composition with ranges
Output:
(20,210,29)
(10,240,26)
(15,200,25)
(7,240,25)
(12,160,20)
(8,150,17)
(9,120,15)
(5,120,13)
(6,80,10)
(3,40,5)
Limitations
of Functional Programming in C++
116
“Problems” of Functional Programming in C++
● Compilation time
● Hard debugging
● Performance
117
Issues of Functional Programming in C++
● Absence of currying
● Dangerous closures
● Lambdas are verbose
● Tuple is extremely verbose
118
Real Problems of Functional Programming in C++
● Poor type system
○ No real Algebraic Data Types
○ No real function type
○ Lambdas have unique types
○ No real pattern matching (yet)
■ Won’t be expression??
○ Type inference is weak
● Composition of functions is complicated
● No native support of monads (in 2019)
119
Real Problems of Functional Programming in C++
C++
● Poor type system
○ No real Algebraic Data Types
○ No real function type
○ Lambdas have unique types
○ No real pattern matching (yet)
■ Won’t be expression??
○ Type inference is weak
● Composition of functions is complicated
● No native support of monads (in 2019)
Prediction for high-level C++
time
High-level C++
adoption
2020
New high-level features
2023
120
121
GitHub List: Functional Programming in C++
https://github.com/graninas/cpp_functional_programming��
● Books
● Articles
● Papers
● Talks
● QA
● Libraries
● Showcase projects
122
Thanks for watching!
Let’s talk?
C++ Siberia 2019
Alexander Granin
graninas@gmail.com
???
125

More Related Content

What's hot (20)

PDF
Data structures lab manual
Syed Mustafa
 
PDF
Data Structures Practical File
Harjinder Singh
 
DOC
Practical Class 12th (c++programs+sql queries and output)
Aman Deep
 
PDF
Дмитрий Верескун «Синтаксический сахар C#»
SpbDotNet Community
 
PDF
C++ Programming - 11th Study
Chris Ohk
 
PDF
54602399 c-examples-51-to-108-programe-ee01083101
premrings
 
PDF
VTU Data Structures Lab Manual
Nithin Kumar,VVCE, Mysuru
 
PDF
C++17 introduction - Meetup @EtixLabs
Stephane Gleizes
 
PDF
C++ Programming - 2nd Study
Chris Ohk
 
DOCX
C++ file
simarsimmygrewal
 
DOCX
C++ file
Mukund Trivedi
 
DOC
project report in C++ programming and SQL
vikram mahendra
 
PDF
Object Oriented Programming Using C++ Practical File
Harjinder Singh
 
DOCX
Computer Science Practical Science C++ with SQL commands
Vishvjeet Yadav
 
DOC
programming in C++ report
vikram mahendra
 
PDF
Modern c++ (C++ 11/14)
Geeks Anonymes
 
PDF
C++11
ppd1961
 
PPTX
C++11
Andrey Dankevich
 
PPTX
C++11
Quang Trần Duy
 
PPT
Lecture05
elearning_portal
 
Data structures lab manual
Syed Mustafa
 
Data Structures Practical File
Harjinder Singh
 
Practical Class 12th (c++programs+sql queries and output)
Aman Deep
 
Дмитрий Верескун «Синтаксический сахар C#»
SpbDotNet Community
 
C++ Programming - 11th Study
Chris Ohk
 
54602399 c-examples-51-to-108-programe-ee01083101
premrings
 
VTU Data Structures Lab Manual
Nithin Kumar,VVCE, Mysuru
 
C++17 introduction - Meetup @EtixLabs
Stephane Gleizes
 
C++ Programming - 2nd Study
Chris Ohk
 
C++ file
Mukund Trivedi
 
project report in C++ programming and SQL
vikram mahendra
 
Object Oriented Programming Using C++ Practical File
Harjinder Singh
 
Computer Science Practical Science C++ with SQL commands
Vishvjeet Yadav
 
programming in C++ report
vikram mahendra
 
Modern c++ (C++ 11/14)
Geeks Anonymes
 
C++11
ppd1961
 
Lecture05
elearning_portal
 

Similar to The present and the future of functional programming in c++ (20)

PDF
The Present and The Future of Functional Programming in C++
Alexander Granin
 
PDF
Rainer Grimm, “Functional Programming in C++11”
Platonov Sergey
 
PDF
Functional programming in C++
Alexandru Bolboaca
 
PPTX
C++11: Feel the New Language
mspline
 
PPTX
The Style of C++ 11
Sasha Goldshtein
 
PPTX
Return of c++
Yongwei Wu
 
PPTX
Good functional programming is good programming
kenbot
 
PDF
Thinking in Functions
Alexandru Bolboaca
 
PPTX
Intro to Functional Programming
Jordan Parmer
 
PPTX
lab-8 (1).pptx
ShimoFcis
 
PDF
Антон Бикинеев, Writing good std::future&lt; C++ >
Sergey Platonov
 
PDF
Introduction to functional programming (In Arabic)
Omar Abdelhafith
 
PDF
(3) cpp procedural programming
Nico Ludwig
 
PPTX
Fun with Lambdas: C++14 Style (part 2)
Sumant Tambe
 
PPTX
Whats New in Visual Studio 2012 for C++ Developers
Rainer Stropek
 
PDF
Cat's anatomy
Nicola Bonelli
 
PPTX
Summary of C++17 features
Bartlomiej Filipek
 
PDF
Data Structure and Algorithm
PRIYA DARSHINI A/P VEJAN
 
PPTX
Столпы функционального программирования для адептов ООП, Николай Мозговой
Sigma Software
 
PPT
Basics of cpp
vinay chauhan
 
The Present and The Future of Functional Programming in C++
Alexander Granin
 
Rainer Grimm, “Functional Programming in C++11”
Platonov Sergey
 
Functional programming in C++
Alexandru Bolboaca
 
C++11: Feel the New Language
mspline
 
The Style of C++ 11
Sasha Goldshtein
 
Return of c++
Yongwei Wu
 
Good functional programming is good programming
kenbot
 
Thinking in Functions
Alexandru Bolboaca
 
Intro to Functional Programming
Jordan Parmer
 
lab-8 (1).pptx
ShimoFcis
 
Антон Бикинеев, Writing good std::future&lt; C++ >
Sergey Platonov
 
Introduction to functional programming (In Arabic)
Omar Abdelhafith
 
(3) cpp procedural programming
Nico Ludwig
 
Fun with Lambdas: C++14 Style (part 2)
Sumant Tambe
 
Whats New in Visual Studio 2012 for C++ Developers
Rainer Stropek
 
Cat's anatomy
Nicola Bonelli
 
Summary of C++17 features
Bartlomiej Filipek
 
Data Structure and Algorithm
PRIYA DARSHINI A/P VEJAN
 
Столпы функционального программирования для адептов ООП, Николай Мозговой
Sigma Software
 
Basics of cpp
vinay chauhan
 
Ad

More from Alexander Granin (20)

PDF
Concurrent applications with free monads and stm
Alexander Granin
 
PDF
Hierarchical free monads and software design in fp
Alexander Granin
 
PDF
Final tagless vs free monad
Alexander Granin
 
PDF
О разработке десктопных приложений / About desktop development
Alexander Granin
 
PDF
Принципы и практики разработки ПО 2 / Principles and practices of software de...
Alexander Granin
 
PDF
Принципы и практики разработки ПО / Principles and practices of software deve...
Alexander Granin
 
PDF
Закон Деметры / Demetra's law
Alexander Granin
 
PDF
Design of big applications in FP
Alexander Granin
 
PDF
GitHub - зеркало разработчика
Alexander Granin
 
PDF
Functional programming in C++ LambdaNsk
Alexander Granin
 
PDF
Transition graph using free monads and existentials
Alexander Granin
 
PDF
Software transactional memory. pure functional approach
Alexander Granin
 
PDF
Вы не понимаете ФП / You don't understand FP
Alexander Granin
 
PDF
Functional "Life": parallel cellular automata and comonads
Alexander Granin
 
PDF
Functional microscope - Lenses in C++
Alexander Granin
 
PDF
Дизайн больших приложений в ФП
Alexander Granin
 
PDF
Линзы - комбинаторная манипуляция данными
Alexander Granin
 
PPTX
Линзы - комбинаторная манипуляция данными (Dev2Dev)
Alexander Granin
 
PDF
Идиоматичный функциональный код
Alexander Granin
 
PDF
Функционально декларативный дизайн на C++
Alexander Granin
 
Concurrent applications with free monads and stm
Alexander Granin
 
Hierarchical free monads and software design in fp
Alexander Granin
 
Final tagless vs free monad
Alexander Granin
 
О разработке десктопных приложений / About desktop development
Alexander Granin
 
Принципы и практики разработки ПО 2 / Principles and practices of software de...
Alexander Granin
 
Принципы и практики разработки ПО / Principles and practices of software deve...
Alexander Granin
 
Закон Деметры / Demetra's law
Alexander Granin
 
Design of big applications in FP
Alexander Granin
 
GitHub - зеркало разработчика
Alexander Granin
 
Functional programming in C++ LambdaNsk
Alexander Granin
 
Transition graph using free monads and existentials
Alexander Granin
 
Software transactional memory. pure functional approach
Alexander Granin
 
Вы не понимаете ФП / You don't understand FP
Alexander Granin
 
Functional "Life": parallel cellular automata and comonads
Alexander Granin
 
Functional microscope - Lenses in C++
Alexander Granin
 
Дизайн больших приложений в ФП
Alexander Granin
 
Линзы - комбинаторная манипуляция данными
Alexander Granin
 
Линзы - комбинаторная манипуляция данными (Dev2Dev)
Alexander Granin
 
Идиоматичный функциональный код
Alexander Granin
 
Функционально декларативный дизайн на C++
Alexander Granin
 
Ad

Recently uploaded (20)

PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PPTX
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PPTX
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 

The present and the future of functional programming in c++

  • 2. The Present and The Future of Functional Programming in C++ Alexander Granin [email protected] C++ Siberia 2019
  • 4. Eric Niebler, C++ Siberia 2015 Ranges for the Standard Library
  • 5. Eric Niebler, C++ Siberia 2015 Ranges for the Standard Library Bartosz Milewski, С++ User Group 2014 Re-discovering monads in C++
  • 6. Eric Niebler, C++ Siberia 2015 Ranges for the Standard Library Bartosz Milewski, С++ User Group 2014 Re-discovering monads in C++ Ivan Čukić, C++ Siberia 2017 Atom heart monad (FRP in C++)
  • 7. My talks about Functional Programming in C++ С++ User Group 2014 Functional and Declarative Design in C++
  • 8. My talks about Functional Programming in C++ С++ User Group 2014 Functional and Declarative Design in C++ С++ Siberia 2015 Functional Microscope: Lenses in C++
  • 9. My talks about Functional Programming in C++ С++ User Group 2014 Functional and Declarative Design in C++ С++ Siberia 2015 Functional Microscope: Lenses in C++ С++ Russia 2016 Functional “Life”: Parallel Cellular Automata and Comonads in C++
  • 10. С++ User Group 2014 Functional and Declarative Design in C++ С++ Siberia 2015 Functional Microscope: Lenses in C++ С++ Russia 2016 Functional “Life”: Parallel Cellular Automata and Comonads in C++ С++ Russia 2018 Functional Approach to Software Transactional Memory in C++ My talks about Functional Programming in C++
  • 11. struct Presentation { Philosophy of Functional Programming in C++ Elements of Functional Programming in C++ Functional Design, Patterns and Approaches In C++ Limitations of Functional Programming in C++ };
  • 14. instructions, jumps, loops -- unstructured programming 14
  • 15. instructions, jumps, loops sequence, selection, iteration -- unstructured programming -- structured programming 15
  • 16. instructions, jumps, loops sequence, selection, iteration declaration, application, recursion -- unstructured programming -- functional programming -- structured programming 16
  • 17. class A {} template<> constexpr #define procedural programming metaprogramming functional programming object-oriented programming int main() 17
  • 19. C++ -> C++11/14 -> C++17/20Abstract C++ developer: C++ Developer Evolution
  • 20. C++ -> C++11/14 -> C++17/20 C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20 Abstract C++ developer: Real C++ developer: C++ Developer Evolution
  • 21. C++ -> C++11/14 -> C++17/20 C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20 C++ -> WTF -> Go Abstract C++ developer: Real C++ developer: Beginner C++ developer: C++ Developer Evolution
  • 22. C++ -> C++11/14 -> C++17/20 C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20 C++ -> WTF -> Go C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20 Abstract C++ developer: Real C++ developer: Beginner C++ developer: Modern C++ developer: C++ Developer Evolution
  • 23. C++ -> C++11/14 -> C++17/20 C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20 C++ -> WTF -> Go C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20 C++ -> C++11/14 -> Uh-Oh -> Rust Abstract C++ developer: Real C++ developer: Beginner C++ developer: Modern C++ developer: Tired C++ developer: C++ Developer Evolution
  • 24. C++ -> C++11/14 -> C++17/20 C++ -> Pain! -> C++11/14 -> My brain! -> C++17/20 C++ -> WTF -> Go C++ -> C++11/14 -> Why?!! -> Haskell -> C++17/20 C++ -> C++11/14 -> Uh-Oh -> Rust C++98 -> Please, leave me alone -> C++98 Abstract C++ developer: Real C++ developer: Beginner C++ developer: Modern C++ developer: Tired C++ developer: Old School C++ developer: C++ Developer Evolution
  • 26. Verbosity of imperative and OO code FP data types and constructs algebraic data types, higher order functions, lambdas, closures pattern-matching, currying, partial application Functional programming in my C++?!! 26
  • 27. Verbosity of imperative and OO code Unsafety, bugs and lack or guarantees FP data types and constructs Reliable FP concepts, guarantees purity, immutability, side effects control, type level programming recursion, range-based iteration, monoids, functors, monads... Functional programming in my C++?!! 27
  • 28. Verbosity of imperative and OO code Unsafety, bugs and lack or guarantees Leaking and heavy abstractions FP data types and constructs Reliable FP concepts, guarantees Declarative and functional design domain specific languages, persistent data types laziness, composition, combinators, first class functions Functional programming in my C++?!! 28
  • 29. Verbosity of imperative and OO code Unsafety, bugs and lack or guarantees Leaking and heavy abstractions Complexity of multithreaded programs FP data types and constructs Reliable FP concepts, guarantees Declarative and functional design Functional approaches functional reactive programming, software transactional memory, async / par / future monad, automatic parallelism Functional programming in my C++?!! 29
  • 31. 𝝺ambdas [](auto i) { return i + 1; } i -> i + 1 i => i + 1 lambda i: i + 1 | i | -> i + 1
  • 32. 𝝺ambdas in C++ <>(int x, int y) -> int {return x + y;} [|b|]() { return |b| -> set_text("World"); } i => i + 1 [](auto i) { return i + 1; } []<>(auto i) { return i + 1; }
  • 33. 𝝺ambdas in C++ Idea of the feature Standard issuing Feature adoption Feature improvements == You are standing here == Feature improvements <>(int x, int y) -> int {return x + y;} [|b|]() { return |b| -> set_text("World"); } i => i + 1 [](auto i) { return i + 1; } []<>(auto i) { return i + 1; }
  • 34. 𝝺ambdas in C++ Idea of the feature Standard issuing Feature adoption Feature improvements == You are standing here == Feature improvements 2011 ...2000... 2014, 2017 ...2011... 2020 2019 <>(int x, int y) -> int {return x + y;} [|b|]() { return |b| -> set_text("World"); } i => i + 1 [](auto i) { return i + 1; } []<>(auto i) { return i + 1; }
  • 35. Idea of the feature Pondering and thinking Reference implementation Discussions in Committee Drafting in Standard Implementation in compilers Standard issuing Feature adoption Feature improvements == You are standing here == Feature improvements 𝝺ambdas in C++ 2011 ...2000... <>(int x, int y) -> int {return x + y;} [|b|]() { return |b| -> set_text("World"); } i => i + 1 [](auto i) { return i + 1; } []<>(auto i) { return i + 1; } 2014, 2017 ...2011... 2008 - 2011 2006 - 2008 2020 2019
  • 36. What is 𝝺ambda? And who is 𝝺ambdaman? 36
  • 37. “ 𝝺ambda is just an object with operator() overloaded” std::vector<int> v {4, 2, 4}; struct Summator { int sum = 0; void operator()(int i) { sum += i; } }; Summator summator = std::for_each(v.begin(), v.end(), Summator()); std::cout << summator.sum; // 10 37
  • 38. “ 𝝺ambda is an anonymous function” std::vector<int> v {4, 2, 4}; auto sum = 0; std::for_each(v.begin(), v.end(), [&sum](int i) { sum += i; }); std::cout << sum; // 10 38
  • 39. “ 𝝺ambda is an universal combinator” auto I = [](auto x) { return x; }; auto K = [](auto x) { return [=](auto y) { return x; }; }; auto S = [](auto x) { return [=](auto y) { return [=](auto z) { return (x(z))(y(z)); }; }; }; Ix = x Kxy = x Sxyz = xz(yz) 39
  • 40. 𝝺ambdas evolution auto mul2 = [](int i) { return i * 2; } auto mul2 = [](auto i) { return i * 2; } constexpr auto mul2 = [](auto i) { return i * 2; } auto mul2 = []<typename T>(T i) { return i * 2; } auto mul2 = i => i * 2; C++11 C++14 C++17 C++20 C++?? Lambda expressions Polymorphic lambdas Constexpr lambdas “Familiar” syntax Abbreviated syntax 40
  • 48. Recursive constexpr pow() function using UInt = uint64_t; constexpr UInt pow(UInt a, UInt b) { return b == 0 ? 1 : a * pow(a, b - 1); } 48
  • 49. Recursive constexpr tower() function using UInt = uint64_t; constexpr UInt pow(UInt a, UInt b) { return b == 0 ? 1 : a * pow(a, b - 1); } constexpr UInt tower(UInt a, UInt b) { return b == 0 ? throw std::invalid_argument("b == 0") : b == 1 ? a : pow(a, tower(a, b - 1)); } 49
  • 50. Throwing exception at compile time? using UInt = uint64_t; constexpr UInt pow(UInt a, UInt b) { return b == 0 ? 1 : a * pow(a, b - 1); } constexpr UInt tower(UInt a, UInt b) { return b == 0 ? throw std::invalid_argument("b == 0") : b == 1 ? a : pow(a, tower(a, b - 1)); } 50
  • 52. constexpr UInt arr_impl(bool brackets_rec, UInt cnt, UInt a, UInt n, UInt b) { return brackets_rec ? (cnt == 0 ? ... ... ...) // recursion by brackets : (n == 1 ? pow(a, b) : n == 2 ? tower(a, b) : arr_impl(true, b - 1, a, n - 1, a)); // recursion by arrows } Double recursion constexpr arr_impl() function 52
  • 53. constexpr UInt arr(UInt a, UInt n, UInt b) { return arr_impl(false, 0, a, n, b); } constexpr UInt x1 = arr(3, 2, 3); // Compile-time evaluated UInt x2 = arr(3, 2, 3); // Has to be compile-time evaluated // 3 ↑↑ 3 = 7625597484987 Evaluation 53
  • 54. Pure Template Functional Programming in C++ 54
  • 55. Template Pow “function” template <UInt A, UInt N> struct Pow { static constexpr UInt value = A * Pow<A, N - 1>::value; }; template <UInt A> struct Pow<A, 0> { static constexpr UInt value = 1; }; 55
  • 56. Template Pow “function” template <UInt A, UInt N> struct Pow { static constexpr UInt value = A * Pow<A, N - 1>::value; }; template <UInt A> struct Pow<A, 0> { static constexpr UInt value = 1; }; 56 “Pattern matching” “Recursion”
  • 57. Template Tower “function” template <UInt A, UInt B> struct Tower { static constexpr UInt value = Pow<A, Tower<A, B - 1>::value>::value; }; template <UInt A> struct Tower<A, 1> { static constexpr UInt value = A; }; 57
  • 58. Template ArrImpl “function” template <bool brackets_rec, UInt C, UInt A, UInt S, UInt B> struct ArrImpl { static constexpr UInt value = 1; }; template <UInt C, UInt A, UInt S, UInt B> struct ArrImpl<true, C, A, S, B> { static constexpr UInt value = ArrImpl<false, 0, A, ArrImpl<true, C - 1, A, S, B>::value, S>::value; }; ... // More template code 58
  • 59. “Evaluation” template <UInt A, UInt S, UInt B> struct Arr { static constexpr UInt value = ArrImpl<false, 0, A, S, B>::value; }; auto result = Arr<3, 2, 3>::value; // 3 ↑↑ 3 = 7625597484987 59
  • 60. Template ⇨ constexpr = 👍 template <UInt A, UInt S, UInt B> struct Arr { static constexpr UInt value = arr_impl(false, 0, A, S, B); }; 60
  • 61. Constexpr ⇨ template = ☠ template <UInt A, UInt S, UInt B> struct Arr { static constexpr UInt value = arr_impl(false, 0, A, S, B); }; // Won’t compile: constexpr UInt arr(UInt a, UInt s, UInt b) { return ArrImpl<false, 0, a, s, b>::value; } 61
  • 62. Constexpr ⇨ template = ☠ template <UInt A, UInt S, UInt B> struct Arr { static constexpr UInt value = arr_impl(false, 0, A, S, B); }; // Won’t compile: constexpr UInt arr(UInt a, UInt s, UInt b) { return ArrImpl<false, 0, a, s, b>::value; } 62 Dependent types??
  • 63. template <UInt A, UInt S, UInt B> struct Arr { static constexpr UInt value = arr_impl(false, 0, A, S, B); }; template <UInt A, UInt S, UInt B> constexpr UInt arr() { return ArrImpl<false, 0, A, S, B>::value; } Template constexpr! 63
  • 66. expected<T, E>: Proposal P0323R2 expected<double, error_condition> safe_divide(double i, double j) { if (j == 0) { return make_unexpected(arithmetic_error::divide_by_zero); } else { return i / j; } } 66
  • 67. template <typename T, typename E> using Expected = std::variant<T, E>; enum class Errors { ZeroTowerError = 0, ZeroDivisionError = 1 }; using UInt = uint64_t; using SafeInt = Expected<UInt, Errors>; constexpr SafeInt make_pure (const UInt& v) { return { v }; } constexpr SafeInt make_error(const Errors& e) { return { e }; } Custom Expected<T, E> 67 Sum type using std::variant
  • 68. template <typename T, typename E> using Expected = std::variant<T, E>; enum class Errors { ZeroTowerError = 0, ZeroDivisionError = 1 }; using UInt = uint64_t; using SafeInt = Expected<UInt, Errors>; constexpr SafeInt make_pure (const UInt& v) { return { v }; } constexpr SafeInt make_error(const Errors& e) { return { e }; } Custom Expected<T, E> 68 Supported errors & alias
  • 69. template <typename T, typename E> using Expected = std::variant<T, E>; enum class Errors { ZeroTowerError = 0, ZeroDivisionError = 1 }; using UInt = uint64_t; using SafeInt = Expected<UInt, Errors>; constexpr SafeInt make_pure (const UInt& v) { return { v }; } constexpr SafeInt make_error(const Errors& e) { return { e }; } Custom Expected<T, E> 69 Constructors
  • 70. std::variant<UInt, Errors> val = make_pure(10); UInt result = std::holds_alternative<UInt>(val) ? std::get<UInt>(val) : throw std::runtime_error("Error got."); Extracting values of variant<> 70
  • 71. Pattern Matching? struct SafeIntVisitor { void operator()(const UInt& i) { cout << "Result: " << i; } void operator()(const Errors& e) { cout << "Error: " << e; } }; std::visit(SafeIntVisitor(), val); inspect (val) { <UInt> i: cout << "Result: " << i; <Errors> e: cout << "Error: " << e; }; 71 Visiting std::variant
  • 72. Pattern Matching! struct SafeIntVisitor { void operator()(const UInt& i) { cout << "Result: " << i; } void operator()(const Errors& e) { cout << "Error: " << e; } }; std::visit(SafeIntVisitor(), val); inspect (val) { <UInt> i: cout << "Result: " << i; <Errors> e: cout << "Error: " << e; }; 72 Pattern matching Proposal P1260R0
  • 73. Object-oriented programming is an exceptionally bad idea which could only have originated in California. -- Edsger Dijkstra 73
  • 74. Functional Design, Patterns and Approaches in C++
  • 75. Monadic error handling with Expected<T, E> template <typename T, typename E> using Expected = std::variant<T, E>; enum class Errors { ZeroTowerError = 0, ZeroDivisionError = 1 }; using UInt = uint64_t; using SafeInt = Expected<UInt, Errors>; constexpr SafeInt make_pure (const UInt& v) { return { v }; } constexpr SafeInt make_error(const Errors& e) { return { e }; } 75
  • 76. UInt pow(UInt a, UInt n) { ... } UInt tower(UInt a, UInt b) { return b == 0 ? throw std::invalid_argument("b == 0") : b == 1 ? a : pow(a, tower(a, b - 1)); } Unsafe tower() function 76
  • 77. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? a : pow(a, tower(a, b - 1)); } safe_tower() function 77
  • 78. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? a : pow(a, tower(a, b - 1)); } safe_tower() function 78
  • 79. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? a : pow(a, tower(a, b - 1)); } safe_tower() function 79
  • 80. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, tower(a, b - 1))); } safe_tower() function 80
  • 81. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, tower(a, b - 1))); } safe_tower() function 81
  • 82. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, tower(a, b - 1))); } safe_tower() function 82
  • 83. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, safe_tower(a, b - 1))); } safe_tower() function 83
  • 84. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, safe_tower(a, b - 1))); } safe_tower() function 84
  • 85. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : make_pure(pow(a, safe_tower(a, b - 1))); } safe_tower() function 85
  • 86. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : mbind(safe_tower(a, b - 1), [=](UInt v) { return make_pure(pow(a, v)); } ); } Monadic binding* 86 * Almost
  • 87. UInt pow(UInt a, UInt n) { ... } SafeInt safe_tower(UInt a, UInt b) { return b == 0 ? make_error(Errors::ZeroTowerError) : b == 1 ? make_pure(a) : mbind(safe_tower(a, b - 1), [=](UInt v) { return make_pure(pow(a, v)); } ); } Monadic binding* 87 * Almost SafeInt mbind (SafeInt, Func<SafeInt, UInt>) mbind :: SafeInt -> (UInt -> SafeInt) -> SafeInt
  • 88. template <typename T, typename E, typename Lambda> SafeInt mbind(SafeInt safe_val, Lambda lambda) { return std::holds_alternative<E>(safe_val) ? safe_val : lambda(std::get<T>(safe_val)); } mbind() function 88
  • 89. auto mul10 = [](UInt i) { return make_pure(i * 10); }; SafeInt v1 = safe_tower(2, 0); SafeInt v2 = mbind(v1, mul10); std::visit(SafeIntVisitor(), v1); // error : 0 std::visit(SafeIntVisitor(), v2); // error : 0 Monadic chaining*, error path 89 * Almost
  • 90. auto mul10 = [](UInt i) { return make_pure(i * 10); }; SafeInt v1 = safe_tower(2, 3); SafeInt v2 = mbind( mbind(v1, mul10), mul10 ); std::visit(SafeIntVisitor(), v1); // result: 16 std::visit(SafeIntVisitor(), v2); // result: 1600 Monadic chaining*, success path 90 * Almost
  • 91. auto mul10 = [](UInt i) { return make_pure(i * 10); }; SafeInt v1 = safe_tower(2, 3); SafeInt v2 = mbind( mbind(v1, mul10), mul10 ); SafeInt v2 = do { UInt i1 <- safe_tower(2, 3); UInt i2 <- mul10(i1); return mul10(i2); } Monadic chaining*, do-notation dream 91 * Almost mbind is hidden under “<-”
  • 92. expected<int, Errors> safe_calculate(int a, int b) { do { UInt v <- safe_tower(a, b); int r <- safe_divide(v, b); return r; } } Do-notation dreams expected<int, Errors> safe_calculate(int a, int b) { UInt v = try safe_tower(a, b); int r = try safe_divide(v, b); return r; } 92 Haskell-like “do” Proposal P0650R1 “C++ Monadic Interface”
  • 93. MONADS It’s what we like memes to be about 93
  • 94. expected<int, Errors> safe_calculate(int a, int b) { do { UInt v <- safe_tower(a, b); int r <- safe_divide(v, b); return r; } } Monads everywhere: expected<> 94 mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E>
  • 95. optional<int> same_age_persons_count(int personId) { do { Person p <- get(personId); Persons ps <- find( [=](Person x){ return x.age == p.age; } ); return ps.size(); } } Monads everywhere: optional<> 95 mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> mbind :: optional<A> -> (A -> optional<B>) -> optional<B>
  • 96. future<int> calculate(int a, int b) { do { int x <- heavy_calc(a); int y <- heavy_calc(b); return heavy_calc(x + y); } } Monads everywhere: future<> 96 mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> mbind :: optional<A> -> (A -> optional<B>) -> optional<B> mbind :: future<A> -> (A -> future<B>) -> future<B>
  • 97. async<Result> request_person(int personId) { do { auto person <- request_person(personId); auto confs <- request_conferences(personId); bool saved1 <- save(person); bool saved2 <- save(confs); return {saved1 && saved2, person, confs}; } } Monads everywhere: async<> (coroutines?) 97 mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> mbind :: optional<A> -> (A -> optional<B>) -> optional<B> mbind :: future<A> -> (A -> future<B>) -> future<B> mbind :: async<A> -> (A -> async<B>) -> async<B>
  • 98. parser<Person> person() { do { _ <- many(space); first_name <- name(); _ <- many(space); last_name <- name(); return {first_name, last_name}; } } Monads everywhere: parser<> 98 mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> mbind :: optional<A> -> (A -> optional<B>) -> optional<B> mbind :: future<A> -> (A -> future<B>) -> future<B> mbind :: async<A> -> (A -> async<B>) -> async<B> mbind :: parser<A> -> (A -> parser<B>) -> parser<B>
  • 101. 101
  • 103. 103 auto triples = for_each(iota(1), [](int z) { return for_each(iota(1, z+1), [=](int x) { return for_each(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); Pythagorean Triples in Ranges
  • 104. 104 auto triples = for_each(iota(1), [](int z) { return for_each(iota(1, z+1), [=](int x) { return for_each(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); Pythagorean Triples in Ranges
  • 105. 105 auto triples = for_each(iota(1), [](int z) { return for_each(iota(1, z+1), [=](int x) { return for_each(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); for(auto triple : triples | view::take(10)) { cout << '(' << get<0>(triple) << ',' << get<1>(triple) << ',' << get<2>(triple) << ')' << 'n'; } Pythagorean Triples in Ranges Output: (3,4,5) (6,8,10) (5,12,13) (9,12,15) (8,15,17) (12,16,20) (7,24,25) (15,20,25) (10,24,26) (20,21,29)
  • 106. 106 Pythagorean Triples in Ranges, reformatted auto triples = for_each(iota(1), [] (int z) { return for_each(iota(1, z+1), [=](int x) { return for_each(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); });
  • 107. 107 Looks familiar... auto triples = for_each(iota(1), [] (int z) { return for_each(iota(1, z+1), [=](int x) { return for_each(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); iota :: list<int> for_each :: list<int> -> (int -> list<int>) -> list<int>
  • 108. 108 for_each → mbind... auto triples = mbind(iota(1), [] (int z) { return mbind(iota(1, z+1), [=](int x) { return mbind(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); iota :: list<int> for_each :: list<int> -> (int -> list<int>) -> list<int> mbind :: list<int> -> (int -> list<int>) -> list<int>
  • 109. 109 Monads, again?? auto triples = mbind(iota(1), [] (int z) { return mbind(iota(1, z+1), [=](int x) { return mbind(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); auto triples = do { int z <- iota(1); int x <- iota(1, z+1); int y <- iota(x, z+1); guard (x*x + y*y == z*z); return make_tuple(x, y, z); }
  • 110. 110 auto triples = mbind(iota(1), [] (int z) { return mbind(iota(1, z+1), [=](int x) { return mbind(iota(x, z+1), [=](int y) { return yield_if(x*x + y*y == z*z, make_tuple(x, y, z)); }); }); }); auto triples = do { int z <- iota(1); int x <- iota(1, z+1); int y <- iota(x, z+1); guard (x*x + y*y == z*z); return make_tuple(x, y, z); } Monadic Pythagorean Triples in Haskell triples = do z <- [1..] x <- [1..z] y <- [x..z] guard (x*x + y*y == z*z) pure (x, y, z)
  • 111. 111 It’s inevitable. This is terrifying. mbind :: expected<A, E> -> (A -> expected<B, E>) -> expected<B, E> // error handling mbind :: optional<A> -> (A -> optional<B>) -> optional<B> // absent values mbind :: future<A> -> (A -> future<B>) -> future<B> // parallelism mbind :: async<A> -> (A -> async<B>) -> async<B> // callback hell elimination mbind :: parser<A> -> (A -> parser<B>) -> parser<B> // parsing mbind :: list<A> -> (A -> list<B>) -> list<B> // combinatorics (kind of) mbind :: reader<A> -> (A -> reader<B>) -> reader<B> // environment data mbind :: writer<A> -> (A -> writer<B>) -> writer<B> // write-only data mbind :: state<A> -> (A -> state<B>) -> state<B> // monadic state mbind :: io<A> -> (A -> io<B>) -> io<B> // effects control
  • 112. 112 for(auto triple : triples | view::take(10)) { cout << '(' << get<0>(triple) << ',' << get<1>(triple) << ',' << get<2>(triple) << ')' << 'n'; } Functional composition with ranges Output: (3,4,5) (6,8,10) (5,12,13) (9,12,15) (8,15,17) (12,16,20) (7,24,25) (15,20,25) (10,24,26) (20,21,29)
  • 113. 113 for(auto triple : triples | view::take(10) | view::transform(mul10_middle)) { cout << '(' << get<0>(triple) << ',' << get<1>(triple) << ',' << get<2>(triple) << ')' << 'n'; } auto mul10_middle = [](const tuple<int, int, int>& t) { const auto& [x, y, z] = t; return make_tuple(x, y * 10, z); }; Functional composition with ranges Output: (3,40,5) (6,80,10) (5,120,13) (9,120,15) (8,150,17) (12,160,20) (7,240,25) (15,200,25) (10,240,26) (20,210,29)
  • 114. 114 for(auto triple : triples | view::take(10) | view::transform(mul10_middle) | view::reverse) { cout << '(' << get<0>(triple) << ',' << get<1>(triple) << ',' << get<2>(triple) << ')' << 'n'; } auto mul10_middle = [](const tuple<int, int, int>& t) { const auto& [x, y, z] = t; return make_tuple(x, y * 10, z); }; Functional composition with ranges Output: (20,210,29) (10,240,26) (15,200,25) (7,240,25) (12,160,20) (8,150,17) (9,120,15) (5,120,13) (6,80,10) (3,40,5)
  • 116. 116 “Problems” of Functional Programming in C++ ● Compilation time ● Hard debugging ● Performance
  • 117. 117 Issues of Functional Programming in C++ ● Absence of currying ● Dangerous closures ● Lambdas are verbose ● Tuple is extremely verbose
  • 118. 118 Real Problems of Functional Programming in C++ ● Poor type system ○ No real Algebraic Data Types ○ No real function type ○ Lambdas have unique types ○ No real pattern matching (yet) ■ Won’t be expression?? ○ Type inference is weak ● Composition of functions is complicated ● No native support of monads (in 2019)
  • 119. 119 Real Problems of Functional Programming in C++ C++ ● Poor type system ○ No real Algebraic Data Types ○ No real function type ○ Lambdas have unique types ○ No real pattern matching (yet) ■ Won’t be expression?? ○ Type inference is weak ● Composition of functions is complicated ● No native support of monads (in 2019)
  • 120. Prediction for high-level C++ time High-level C++ adoption 2020 New high-level features 2023 120
  • 121. 121 GitHub List: Functional Programming in C++ https://github.com/graninas/cpp_functional_programming�� ● Books ● Articles ● Papers ● Talks ● QA ● Libraries ● Showcase projects
  • 122. 122
  • 123. Thanks for watching! Let’s talk? C++ Siberia 2019 Alexander Granin [email protected]
  • 124. ???
  • 125. 125