Swift had a global join function which joined an array by adding a seperator and worked great for concating strings. Is there an alternative now for Swift 2?
Swift 2 replacement for "join"
SequenceType has an extension for joining with a separator:
["a","b","c"].joinWithSeparator(",") // "a,b,c"