Results
implements the CollectionType
protocol so you could use reduce
to convert it:
let results: Results = ...
let converted = results.reduce(List()) { (list, element) -> List in
list.append(element)
return list
}
You could put this code in an extension or however you like.