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 2 Closure Expressions Closure Expression Shorthand

Agustin Mendoza
Agustin Mendoza
5,247 Points

Choosing the best shorthand syntax possible Could someone help me figured out why this shorthand syntax is not working?

I'm having some trouble on the code challenge at the end. In it you're asked to:

"...change the map function to use a closure expression rather than the doubleValue function. Use all the shorthand syntax possible to make it concise."

This is the code for the challenge:

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

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

This is what I came out with ( Xcode is not showing any errors )

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

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

Thank you in advance

1 Answer

Well it appears you have to do the closure exactly as below for this one. This is the most concise way.

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