Book Image

Swift Functional Programming - Second Edition

By : Dr. Fatih Nayebi
Book Image

Swift Functional Programming - Second Edition

By: Dr. Fatih Nayebi

Overview of this book

Swift is a multi-paradigm programming language enabling you to tackle different problems in various ways. Understanding each paradigm and knowing when and how to utilize and combine them can lead to a better code base. Functional programming (FP) is an important paradigm that empowers us with declarative development and makes applications more suitable for testing, as well as performant and elegant. This book aims to simplify the FP paradigms, making them easily understandable and usable, by showing you how to solve many of your day-to-day development problems using Swift FP. It starts with the basics of FP, and you will go through all the core concepts of Swift and the building blocks of FP. You will also go through important aspects, such as function composition and currying, custom operator definition, monads, functors, applicative functors,memoization, lenses, algebraic data types, type erasure, functional data structures, functional reactive programming (FRP), and protocol-oriented programming(POP). You will then learn to combine those techniques to develop a fully functional iOS application from scratch
Table of Contents (19 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Dedication
Preface

Equatable and Comparable


We are able to compare two value types such as String, Int, and Double, but we cannot compare two custom value types that we have developed. To make our custom value types comparable, we need to implement Equatable and Comparable protocols. Let's first examine an example of equality checking without conforming to protocols:

struct Point { 
    let x: Double 
    let y: Double 
} 

let firstPoint = Point(x: 3.0, y: 5.5) 
let secondPoint = Point(x: 7.0, y: 9.5) 

let isEqual = (firstPoint == secondPoint)

In this example, the compiler will complain that binary operator == cannot be applied to two Point operands. Let's fix this problem by conforming to the Equatable protocol:

struct Point: Equatable { 
    let x: Double 
    let y: Double 
} 

func ==(lhs: Point, rhs:Point) -> Bool { 
    return (lhs.x == rhs.x) && (lhs.y == lhs.y) 
} 

let firstPoint = Point(x: 3.0, y: 5.5) 
let secondPoint = Point(x: 7.0, y: 9.5) 

let isEqual = (firstPoint == secondPoint)

The...