
Hands-On Functional Programming with C++
An effective guide to writing accelerated functional code using C++17 and C++20
- 358 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Hands-On Functional Programming with C++
An effective guide to writing accelerated functional code using C++17 and C++20
About this book
Learn functional programming and build robust applications using the latest functional features in C++
Key Features
- Learn programming concepts such as loops, expressive code, and simple parallelization
- Understand the working of Lambdas and Currying and write Pure functions
- Explore event sourcing and other functional patterns to improve the efficiency of your applications
Book Description
Functional programming enables you to divide your software into smaller, reusable components that are easy to write, debug, and maintain. Combined with the power of C++, you can develop scalable and functional applications for modern software requirements. This book will help you discover the functional features in C++ 17 and C++ 20 to build enterprise-level applications.
Starting with the fundamental building blocks of functional programming and how to use them in C++, you'll explore functions, currying, and lambdas. As you advance, you'll learn how to improve cohesion and delve into test-driven development, which will enable you in designing better software. In addition to this, the book covers architectural patterns such as event sourcing to help you get to grips with the importance of immutability for data storage. You'll even understand how to "think in functions" and implement design patterns in a functional way.
By the end of this book, you'll be able to write faster and cleaner production code in C++ with the help of functional programming.
What you will learn
- Understand the fundamentals of functional programming
- Structure your code by understanding the building blocks of functional programming
- Compare design styles in functional programming and object-oriented programming (OOP)
- Use the concept of currying to create new functions in C++
- Become skilled at implementing design patterns in a functional way
- Get to grips with multithreading by means of functional programming
- Learn how to improve memory consumption when using functional constructs
Who this book is for
This book is for C++ developers who want to learn functional programming but have little to no knowledge of the paradigm. Although no prior knowledge of functional programming is necessary, basic C++ programming experience will help you understand key concepts covered in the book.
Tools to learn more effectively

Saving Books

Keyword Search

Annotating Text

Listen to it instead
Information
Section 1: Functional Building Blocks in C++
- Chapter 1, An Introduction to Functional Programming
- Chapter 2, Understanding Pure Functions
- Chapter 3, Deep Dive into Lambdas
- Chapter 4, The Idea of Functional Composition
- Chapter 5, Partial Application and Currying
An Introduction to Functional Programming
- An introduction to functional programming and an examination of how you've already been using functional constructs
- Structured loops versus functional loops
- Immutability
- Object-oriented programming (OOP) versus functional design
- Composability and removing duplication
Technical requirements
An introduction to functional programming
Functional programming constructs are everywhere
learn square {
repeat 4 {forward 50 turnright 90}
} 
int add(const int base, const int exponent){
return pow(base, exponent);
} std::vector aCollection{5, 4, 3, 2, 1};
sort (aCollection.begin(), aCollection.end()); using namespace std;
// Parts of code omitted for clarity
struct Name{
string firstName;
string lastName;
};
bool compareByFirstName(const Name& first, const Name& second){
return first.firstName < second.firstName;
} int main(){
vector<Name> names = {Name("John", "Smith"), Name("Alex",
"Bolboaca")};
sort(names.begin(), names.end(), compareByFirstName);
}
// The names vector now contains "Alex Bolboaca", "John Smith" Table of contents
- Title Page
- Copyright and Credits
- Dedication
- About Packt
- Contributors
- Preface
- Section 1: Functional Building Blocks in C++
- An Introduction to Functional Programming
- Understanding Pure Functions
- Deep Dive into Lambdas
- The Idea of Functional Composition
- Partial Application and Currying
- Section 2: Design with Functions
- Thinking in Functions - from Data in to Data out
- Removing Duplication with Functional Operations
- Improving Cohesion Using Classes
- Test-Driven Development for Functional Programming
- Section 3: Reaping the Benefits of Functional Programming
- Performance Optimization
- Property-Based Testing
- Refactoring to and through Pure Functions
- Immutability and Architecture - Event Sourcing
- Section 4: The Present and Future of Functional Programming in C++
- Lazy Evaluation Using the Ranges Library
- STL Support and Proposals
- Standard Language Support and Proposals
- Assessments
- Other Books You May Enjoy
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app