Book Image

Swift 3 Functional Programming

By : Dr. Fatih Nayebi
Book Image

Swift 3 Functional Programming

By: Dr. Fatih Nayebi

Overview of this book

<p>This book is based on Swift 3 Developer preview version and aims at simplifying the functional programming (FP) paradigms making it easily usable, by showing you how to solve many of your day-to-day development problems.</p> <p>Whether you are new to functional programming and Swift or experienced, this book will strengthen the skills you need to design and develop high-quality, scalable, and efficient applications.</p> <p>The book starts with functional programming concepts, the basics of Swift 3, and essential concepts such as functions, closures, optionals, enumerations, immutability, and generics in detail with coding examples.</p> <p>Furthermore, this book introduces more advanced topics such as function composition, monads, functors, applicative functors, memoization, lenses, algebraic data types, functional data structures, functional reactive programming (FRP), protocol-oriented programming (POP) and mixing object-oriented programming (OOP) with functional programming (FP) paradigms.</p> <p>Finally, this book provides a working code example of a front-end application developed with these techniques and its corresponding back-end application developed with Swift.</p>
Table of Contents (17 chapters)
Swift 3 Functional Programming
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Summary


In this chapter, we got familiar with different techniques to deal with optionals. We talked about built-in techniques to deal with optionals such as optional binding, guard, coalescing, and optional chaining. Then we explored functional programming techniques to deal with optionals. We created fmap and apply functions and related operators to tackle multiple optional binding problems. Even though some developers may prefer to use built-in multiple optional binding, exploring functional programming techniques practically provides a better understanding of concepts that we will be able to apply to other problems.

In the following chapter, we will explore some examples of functional data structures such as Semigroup, Monoid, Binary Search Tree, Linked List, Stack, and Lazy List.