Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Closures in Swift Closure Expressions Using Closure Expressions

Awaleh Hassan
PLUS
Awaleh Hassan
Courses Plus Student 9,233 Points

Can anyone help me to find out what is wrong with this code?

func double(_ i: Int) -> Int { return i * 2 }

let doubler = double let doubledValues = [1,2,3,4].map(doubler)

let doubledValues2 = [1,2,3,4].map( {(_ i:Int) -> Int in return i * 2 }) let doubledValues3 = [1,2,3,4].map({_ i in return i * 2 }) let doubledValues4 = [1,2,3,4].map({_ i in i * 2}) let doubledValues5 = [1,2,3,4].map({$0 * 2}) let doubledValues7 = [1,2,3,4].map { $0 * 2 }

let doubledValue = [1,2,3,4].map() {$0 * 2}

closures.swift
func double(_ i: Int) -> Int {
    return i * 2
}

let doubler = double
let doubledValues = [1,2,3,4].map(doubler)



let doubledValues2 = [1,2,3,4].map( {(_ i:Int) -> Int in return i * 2 })
let doubledValues3 = [1,2,3,4].map({_ i in return i * 2 })
let doubledValues4 = [1,2,3,4].map({_ i in i * 2})
let doubledValues5 = [1,2,3,4].map({$0 * 2})
let doubledValues7 = [1,2,3,4].map { $0 * 2 }

let doubledValue = [1,2,3,4].map() {$0 * 2}

2 Answers

I think you need to delete the opening and closing parenthesis () after .map . In swift, .map just takes a closure like this .map{} not like this .map({}).

Also, you don't need the external argument name in a closure. So you can get rid of these "_" in doubledValues3 and doubledValues4 then it should work.

func double(_ i: Int) -> Int {
    return i * 2
}

let doubler = double
let doubledValues = [1,2,3,4].map(doubler)



let doubledValues2 = [1,2,3,4].map { (_ i:Int) -> Int in return i * 2 }
let doubledValues3 = [1,2,3,4].map { i in return i * 2 }
let doubledValues4 = [1,2,3,4].map { i in i * 2 }
let doubledValues5 = [1,2,3,4].map { $0 * 2 }
let doubledValues7 = [1,2,3,4].map { $0 * 2 }

let doubledValue = [1,2,3,4].map { $0 * 2 }