Swift 2 replacement for "join"

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?

SequenceType has an extension for joining with a separator:


["a","b","c"].joinWithSeparator(",") // "a,b,c"
Swift 2 replacement for "join"
 
 
Q