Hi,
After update to Xcode 16 a lot of errors happen, for example:
import Foundation
extension Collection {
func get(at i: Index) -> Element? {
return indices.contains(i) ? self[i] : nil
}
}
Errors:
- Cannot find type 'Index' in scope
- Cannot find 'indices' in scope
What is wrong?
Thanks.