Book Image

Mastering Swift 3 - Linux

By : Jon Hoffman
Book Image

Mastering Swift 3 - Linux

By: Jon Hoffman

Overview of this book

Swift is a modern, fast, and safe programming language created by Apple. Writing Swift is interactive and fun, the syntax is concise yet expressive, and the code runs lightning-fast. Swift’s move to open source has been embraced with open arms and has seen increased adoption in the Linux platform. Our book will introduce you to the Swift language, further delving into all the key concepts you need to create applications for desktop, server, and embedded Linux platforms. We will teach you the best practices to design an application with Swift 3 via design patterns and Protocol-Oriented Programming. Further on, you will learn how to catch and respond to errors within your application. When you have gained a strong knowledge of using Swift in Linux, we’ll show you how to build IoT and robotic projects using Swift on single board computers. By the end of the book, you will have a solid understanding of the Swift Language with Linux and will be able to create your own applications with ease.
Table of Contents (24 chapters)
Mastering Swift 3 - Linux
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
2
Learning About Variables, Constants, Strings, and Operators

Generic functions


Let's begin by examining the problem that generics try to solve, and then we will see how generics solve this problem. Let's say that we wanted to create functions that swap the values of two variables (as described in the first part of this chapter); however, for our application, we need to swap two Int types, two Double types, and two String types. Without generics, this would require us to write three separate functions. The following code shows what these functions could look like:

func swapInts (a: inout Int,b: inout Int) { 
    let tmp = a 
    a = b 
    b = tmp 
} 
 
func swapDoubles(a: inout Double,b: inout Double) { 
    let tmp = a 
    a = b 
    b = tmp 
} 
 
func swapStrings(a: inout String, b: inout String) { 
    let tmp = a 
    a = b 
    b = tmp 
} 

With these three functions, we can swap the original values of two Int types, two Double types, and two String types. Now...