Swift programming for Beginners – Swift Nested Functions

(Swift for Beginners)

Swift Nested Functions

In this article, you will learn about nested functions in Swift and how it works with examples.

If a function exists inside the body of another function, it’s called nested function.

Syntax of a nested function

func funcname() {
    //statements of outer function
    func anotherFuncname() {
        //statements of inner function
    }
}

Here, the function anotherFuncname is inside the body of another function funcname.

It should be noted that, inner functions can be only called and used inside the enclosing function (outer function).


Example 1: Nested function without return values

func outputMessageByGreeting(_ message: String) {
    
    func addGreetingAndPrint() {
        print("Hello! (message)")
    }
    addGreetingAndPrint()
}
outputMessageByGreeting("Jack")

When you run the program, the output will be:

Hello! Jack

In the above program, the nested function addGreetingAndPrint() is being called from the enclosing function outputMessageByGreeting().

The statement outputMessageByGreeting("Jack") calls the outer function. And the statement addGreetingAndPrint() inside the outer function calls the method which outputs Hello! Jack in the console.

You cannot call the function addGreetingAndPrint outside of the function outputMessageByGreeting.


Example 2: Nested function with parameters and return values

Nested functions can contain functions with parameters and return values.

func operate(with symbol:String) -> (Int, Int) -> Int {
    
    func add(num1:Int, num2:Int) -> Int {
        return num1 + num2
    }
    
    func subtract(num1:Int, num2:Int) -> Int {
        return num1 - num2
    }
    let operation = (symbol == "+") ?  add : subtract
    return operation
}

let operation = operate(with: "+")
let result = operation(2, 3)
print(result)

When you run the program, the output will be:

5

In the above program,

  • the outer function is operate(), with return value of type Function (Int,Int) -> Int.
  • and the inner (nested) functions are add() and subtract().

 

The nested function add() and subtract() in a way are being used outside of the enclosing function operate(). This is possible because the outer function returns one of these functions.

We’ve used the inner function outside the enclosing function operate() as operation(2, 3). The program internally calls add(2, 3)which outputs 5 in the console.

 

Swift programming for Beginners – Swift Nested Functions

 

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!