SlideShare a Scribd company logo
1 of 125
Download to read offline
The Present and The Future
of Functional Programming in C++
Alexander Granin
graninas@gmail.com
C++ Siberia 2019
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

Data structures lab manual
Data structures lab manualData structures lab manual
Data structures lab manualSyed Mustafa
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File Harjinder Singh
 
Practical Class 12th (c++programs+sql queries and output)
Practical Class 12th (c++programs+sql queries and output) Practical Class 12th (c++programs+sql queries and output)
Practical Class 12th (c++programs+sql queries and output) Aman Deep
 
Дмитрий Верескун «Синтаксический сахар C#»
Дмитрий Верескун «Синтаксический сахар C#»Дмитрий Верескун «Синтаксический сахар C#»
Дмитрий Верескун «Синтаксический сахар C#»SpbDotNet Community
 
C++ Programming - 11th Study
C++ Programming - 11th StudyC++ Programming - 11th Study
C++ Programming - 11th StudyChris Ohk
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101premrings
 
C++17 introduction - Meetup @EtixLabs
C++17 introduction - Meetup @EtixLabsC++17 introduction - Meetup @EtixLabs
C++17 introduction - Meetup @EtixLabsStephane Gleizes
 
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd StudyChris Ohk
 
project report in C++ programming and SQL
project report in C++ programming and SQLproject report in C++ programming and SQL
project report in C++ programming and SQLvikram mahendra
 
Object Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileObject Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileHarjinder Singh
 
Computer Science Practical Science C++ with SQL commands
Computer Science Practical Science C++ with SQL commandsComputer Science Practical Science C++ with SQL commands
Computer Science Practical Science C++ with SQL commandsVishvjeet Yadav
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ reportvikram mahendra
 
Modern c++ (C++ 11/14)
Modern c++ (C++ 11/14)Modern c++ (C++ 11/14)
Modern c++ (C++ 11/14)Geeks Anonymes
 
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java script
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java scriptCodiLime Tech Talk - Grzegorz Rozdzialik: What the java script
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java scriptCodiLime
 

What's hot (20)

Data structures lab manual
Data structures lab manualData structures lab manual
Data structures lab manual
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File
 
Practical Class 12th (c++programs+sql queries and output)
Practical Class 12th (c++programs+sql queries and output) Practical Class 12th (c++programs+sql queries and output)
Practical Class 12th (c++programs+sql queries and output)
 
Дмитрий Верескун «Синтаксический сахар C#»
Дмитрий Верескун «Синтаксический сахар C#»Дмитрий Верескун «Синтаксический сахар C#»
Дмитрий Верескун «Синтаксический сахар C#»
 
C++ Programming - 11th Study
C++ Programming - 11th StudyC++ Programming - 11th Study
C++ Programming - 11th Study
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 
VTU Data Structures Lab Manual
VTU Data Structures Lab ManualVTU Data Structures Lab Manual
VTU Data Structures Lab Manual
 
C++17 introduction - Meetup @EtixLabs
C++17 introduction - Meetup @EtixLabsC++17 introduction - Meetup @EtixLabs
C++17 introduction - Meetup @EtixLabs
 
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd Study
 
C++ file
C++ fileC++ file
C++ file
 
C++ file
C++ fileC++ file
C++ file
 
project report in C++ programming and SQL
project report in C++ programming and SQLproject report in C++ programming and SQL
project report in C++ programming and SQL
 
Object Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical FileObject Oriented Programming Using C++ Practical File
Object Oriented Programming Using C++ Practical File
 
Computer Science Practical Science C++ with SQL commands
Computer Science Practical Science C++ with SQL commandsComputer Science Practical Science C++ with SQL commands
Computer Science Practical Science C++ with SQL commands
 
programming in C++ report
programming in C++ reportprogramming in C++ report
programming in C++ report
 
Modern c++ (C++ 11/14)
Modern c++ (C++ 11/14)Modern c++ (C++ 11/14)
Modern c++ (C++ 11/14)
 
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java script
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java scriptCodiLime Tech Talk - Grzegorz Rozdzialik: What the java script
CodiLime Tech Talk - Grzegorz Rozdzialik: What the java script
 
C++11
C++11C++11
C++11
 
C++11
C++11C++11
C++11
 
C++11
C++11C++11
C++11
 

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

The Present and The Future of Functional Programming in C++
The Present and The Future of Functional Programming in C++The Present and The Future of Functional Programming in C++
The Present and The Future of Functional Programming in C++Alexander Granin
 
PVS-Studio team experience: checking various open source projects, or mistake...
PVS-Studio team experience: checking various open source projects, or mistake...PVS-Studio team experience: checking various open source projects, or mistake...
PVS-Studio team experience: checking various open source projects, or mistake...Andrey Karpov
 
Presentation on C++ Programming Language
Presentation on C++ Programming LanguagePresentation on C++ Programming Language
Presentation on C++ Programming Languagesatvirsandhu9
 
Code quailty metrics demystified
Code quailty metrics demystifiedCode quailty metrics demystified
Code quailty metrics demystifiedJeroen Resoort
 
CAP444-Unit-3-Polymorphism.pptx
CAP444-Unit-3-Polymorphism.pptxCAP444-Unit-3-Polymorphism.pptx
CAP444-Unit-3-Polymorphism.pptxSurajgroupsvideo
 
Value Objects, Full Throttle (to be updated for spring TC39 meetings)
Value Objects, Full Throttle (to be updated for spring TC39 meetings)Value Objects, Full Throttle (to be updated for spring TC39 meetings)
Value Objects, Full Throttle (to be updated for spring TC39 meetings)Brendan Eich
 
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...Min-Yih Hsu
 
C++ 11 Features
C++ 11 FeaturesC++ 11 Features
C++ 11 FeaturesJan Rüegg
 
How to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeHow to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeMicrosoft Tech Community
 
How to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeHow to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeMicrosoft Tech Community
 
JS Responsibilities
JS ResponsibilitiesJS Responsibilities
JS ResponsibilitiesBrendan Eich
 
C++17 not your father’s c++
C++17  not your father’s c++C++17  not your father’s c++
C++17 not your father’s c++Patrick Viafore
 
What&rsquo;s new in Visual C++
What&rsquo;s new in Visual C++What&rsquo;s new in Visual C++
What&rsquo;s new in Visual C++Microsoft
 
Architecture for scalable Angular applications (with introduction and extende...
Architecture for scalable Angular applications (with introduction and extende...Architecture for scalable Angular applications (with introduction and extende...
Architecture for scalable Angular applications (with introduction and extende...Paweł Żurowski
 
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8tdc-globalcode
 

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

The Present and The Future of Functional Programming in C++
The Present and The Future of Functional Programming in C++The Present and The Future of Functional Programming in C++
The Present and The Future of Functional Programming in C++
 
PVS-Studio team experience: checking various open source projects, or mistake...
PVS-Studio team experience: checking various open source projects, or mistake...PVS-Studio team experience: checking various open source projects, or mistake...
PVS-Studio team experience: checking various open source projects, or mistake...
 
Presentation on C++ Programming Language
Presentation on C++ Programming LanguagePresentation on C++ Programming Language
Presentation on C++ Programming Language
 
Code quailty metrics demystified
Code quailty metrics demystifiedCode quailty metrics demystified
Code quailty metrics demystified
 
CAP444-Unit-3-Polymorphism.pptx
CAP444-Unit-3-Polymorphism.pptxCAP444-Unit-3-Polymorphism.pptx
CAP444-Unit-3-Polymorphism.pptx
 
Value Objects, Full Throttle (to be updated for spring TC39 meetings)
Value Objects, Full Throttle (to be updated for spring TC39 meetings)Value Objects, Full Throttle (to be updated for spring TC39 meetings)
Value Objects, Full Throttle (to be updated for spring TC39 meetings)
 
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...
[TGSA Academic Friday] How To Train Your Dragon - Intro to Modern Compiler Te...
 
C++ 11 Features
C++ 11 FeaturesC++ 11 Features
C++ 11 Features
 
How to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeHow to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ Code
 
How to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ CodeHow to Adopt Modern C++17 into Your C++ Code
How to Adopt Modern C++17 into Your C++ Code
 
JS Responsibilities
JS ResponsibilitiesJS Responsibilities
JS Responsibilities
 
C++17 not your father’s c++
C++17  not your father’s c++C++17  not your father’s c++
C++17 not your father’s c++
 
C++ Overview PPT
C++ Overview PPTC++ Overview PPT
C++ Overview PPT
 
C++
C++C++
C++
 
C test
C testC test
C test
 
What&rsquo;s new in Visual C++
What&rsquo;s new in Visual C++What&rsquo;s new in Visual C++
What&rsquo;s new in Visual C++
 
Architecture for scalable Angular applications (with introduction and extende...
Architecture for scalable Angular applications (with introduction and extende...Architecture for scalable Angular applications (with introduction and extende...
Architecture for scalable Angular applications (with introduction and extende...
 
Return of c++
Return of c++Return of c++
Return of c++
 
Novidades do c# 7 e 8
Novidades do c# 7 e 8Novidades do c# 7 e 8
Novidades do c# 7 e 8
 
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
TDC2018SP | Trilha .Net - Novidades do C# 7 e 8
 

More from Alexander Granin

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

More from Alexander Granin (20)

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

Recently uploaded

Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 

Recently uploaded (20)

Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 

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

  • 1.
  • 2. The Present and The Future of Functional Programming in C++ Alexander Granin graninas@gmail.com C++ Siberia 2019
  • 3.
  • 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 graninas@gmail.com
  • 124. ???
  • 125. 125