Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,943 questions

51,883 answers

573 users

How to use nested functions in Swift

1 Answer

0 votes
func selectfunction(minus: Bool) -> (Int) -> Int {
    func plusf(x: Int) -> Int { return x + 1 }
    func minusf(x: Int) -> Int { return x - 1 }
    return minus ? minusf : plusf
}
let selectedminusf = selectfunction(minus: true)

var n = 5
while n != 0 {
    print(n)
    n = selectedminusf(n)
}



  
/*
run:
  
5
4
3
2
1
  
*/

 



answered Feb 12, 2021 by avibootz

Related questions

1 answer 44 views
1 answer 108 views
108 views asked May 31, 2022 by avibootz
1 answer 112 views
1 answer 168 views
168 views asked Oct 13, 2016 by avibootz
1 answer 191 views
...