Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning C++ Functional Programming

You're reading from   Learning C++ Functional Programming Explore functional C++ with concepts like currying, metaprogramming and more

Arrow left icon
Product type Paperback
Published in Aug 2017
Publisher
ISBN-13 9781787281974
Length 304 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Wisnu Anggoro Wisnu Anggoro
Author Profile Icon Wisnu Anggoro
Wisnu Anggoro
Arrow right icon
View More author details
Toc

Table of Contents (9) Chapters Close

Preface 1. Diving into Modern C++ 2. Manipulating Functions in Functional Programming FREE CHAPTER 3. Applying Immutable State to the Function 4. Repeating Method Invocation Using Recursive Algorithm 5. Procrastinating the Execution Process Using Lazy Evaluation 6. Optimizing Code with Metaprogramming 7. Running Parallel Execution Using Concurrency 8. Creating and Debugging Application in Functional Approach

Avoiding the side effect with pure function

A pure function is a function that will always return the same result every time it is given the same input. The result doesn't depend on any information or state and won't produce a side effect, or a change of the system state outside of the function. Let's take a look at the following piece of code:

    /* pure_function_1.cpp */
#include <iostream>

using namespace std;

float circleArea(float r)
{
return 3.14 * r * r;
}

auto main() -> int
{
cout << "[pure_function_1.cpp]" << endl;

// Initializing a float variable
float f = 2.5f;

// Invoking the circleArea() function
// passing the f variable five times
for(int i = 1; i <= 5; ++i)
{
cout << "Invocation " << i << " -> ";
cout...
You have been reading a chapter from
Learning C++ Functional Programming
Published in: Aug 2017
Publisher:
ISBN-13: 9781787281974
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime