let numberSet = Set(1...11) let divideSet = numberSet.map({ $0 / 10 }) //Error: Set does not have a member named map :(
Swift 1.2 support
As of Swift 2.0 the CollectionType protocol (implemented by Set) has a map method.
CollectionType
Set
map