Skip to Content
Mastering Functional Programming
book

Mastering Functional Programming

by Anatolii Kmetiuk
August 2018
Intermediate to advanced
380 pages
10h 2m
English
Packt Publishing
Content preview from Mastering Functional Programming

Motivation

Consider that we have two independent computations. Suppose we have two computations that evaluate mathematical expressions, and then we need to combine their results. Also, suppose that their computation is performed under the Either effect type. So, the main idea is that either of the two computations can fail, and if one of them fails, it is the result of interpretation being left with an error, and if it succeeds, the result is Right of some result:

type Fx[A] = Either[List[String], A]def combineComputations[F[_]: Monad](f1: F[Double], f2: F[Double]): F[Double] = for {   r1 <- f1   r2 <- f2 } yield r1 + r2val result = combineComputations[Fx](Monad[Fx].pure(1.0),  Monad[Fx].pure(2.0)) println(result) // Right(3.0)

In the preceding ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Functional Programming

Learning Functional Programming

Jack Widman

Publisher Resources

ISBN: 9781788620796Supplemental Content