map is unavailable, use the 'map()' method on the sequence

I am having issues with Xcode 7 Beta 3, I am receiving the error 'map is unavailable, use the 'map()' method on the sequence'
I am using Swift for this application with the frameworks; Parse, Firebase, Facebook iOS SDK Installed




Any help will be thanked,


Thanks

As mentioned in the release notes,

"The standard library moved many generic global functions (such as map, filter, and sort) to be methods

written with protocol extensions. This allows those methods to be pervasively available on all sequence and

collection types and allowed the removal of the global functions."

So you need to do what the error message says: use

yourSequenceVar.map(...)

instead of

map(yourSequenceVar, ...)

map is unavailable, use the 'map()' method on the sequence
 
 
Q