Book Image

Scala Functional Programming Patterns

By : Atul S. Khot
Book Image

Scala Functional Programming Patterns

By: Atul S. Khot

Overview of this book

Scala is used to construct elegant class hierarchies for maximum code reuse and extensibility and to implement their behavior using higher-order functions. Its functional programming (FP) features are a boon to help you design “easy to reason about” systems to control the growing software complexities. Knowing how and where to apply the many Scala techniques is challenging. Looking at Scala best practices in the context of what you already know helps you grasp these concepts quickly, and helps you see where and why to use them. This book begins with the rationale behind patterns to help you understand where and why each pattern is applied. You will discover what tail recursion brings to your table and will get an understanding of how to create solutions without mutations. We then explain the concept of memorization and infinite sequences for on-demand computation. Further, the book takes you through Scala’s stackable traits and dependency injection, a popular technique to produce loosely-coupled software systems. You will also explore how to currying favors to your code and how to simplify it by de-construction via pattern matching. We also show you how to do pipeline transformations using higher order functions such as the pipes and filters pattern. Then we guide you through the increasing importance of concurrent programming and the pitfalls of traditional code concurrency. Lastly, the book takes a paradigm shift to show you the different techniques that functional programming brings to your plate. This book is an invaluable source to help you understand and perform functional programming and solve common programming problems using Scala’s programming patterns.
Table of Contents (19 chapters)
Scala Functional Programming Patterns
Credits
About the Author
Aknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Recursive streams


We looked at recursion earlier. Recursive forms are defined in terms of themselves. For example, folders can have subfolders, which, in turn, can have subfolders themselves. Another example is recursive methods calling themselves.

We can use a similar form to define recursive streams. To define recursive streams, consider the following case:

scala> lazy val r = Stream.cons(1, Stream.cons(2, Stream.empty)) 
r: Stream.Cons[Int] = <lazy> 
scala> (r take 4) foreach {x => println(x)} 
1
2

How is this useful? The second cons call can be recursive. (Note we don't need any var):

scala> def s(n: Int):Stream[Int]  = 
     |   Stream.cons(n, s(n+1))  // 1
s: (n: Int)Stream[Int] 
scala> lazy val q = s(0) 
q: Stream[Int] = <lazy> 

Here, we construct the lazy list by placing a recursive call to the method, s.

However, the following form is a succinct one:

scala> def succ(n: Int):Stream[Int] = n #:: succ(n+1) 
succ: (n: Int)Stream[Int] 
scala> lazy val r...