) let array = try Array(cursor) Sets: // Set<Int> let cursor = try Int.fetchCursor(db, ...) let set = try Set(cursor) Dictionaries: // [Int64: [Player]] let cursor = try Player.fetchCursor(db) let dictionary = try Dictionary(grouping: cursor, by: { $0.teamID }) // [...