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 Generics in Swift Generic Functions, Parameters and Constraints CSS Background Blend Modes Challenge

Sam Belcher
Sam Belcher
3,719 Points

Generic Functions With Multiple Type Parameters

How can I return "type [U]"?

generics.swift
func map<T, U>(array: [T], transformation: (T) -> U) -> [U] {
  for number in array {
    return [transformation(number)]
  }
}

1 Answer

Magnus Hållberg
Magnus Hållberg
17,232 Points

Thinking about it, what would you say this for loop you have written is doing? The challenge say you should return an array of type U. What array are you trying to return in this case? Create an array to carry the new values and return it ones the for loop is complete, use the for loop to append the new values.