This doesn’t compile:

let data1 = Data(count:4)
let data2 = Data(count:5)
for i in 0..<min( data1.count, data2.count ) {..} // ! “extra argument in call"

I have to write

for i in 0..<Swift.min

Compiler bug?

Jan E.
_______________________________________________
swift-users mailing list
swift-users@swift.org
https://lists.swift.org/mailman/listinfo/swift-users

Reply via email to