"'init(start:end:)' is deprecated: it will be removed in swift 3. use the '..<' operator" Code Answer

3

you should simply write

var continousdigitsrange1:range<int> = 0..<0

or if you want to go even simpler

var continousdigitsrange = 0..<0
By Solkar on September 23 2022

Answers related to “'init(start:end:)' is deprecated: it will be removed in swift 3. use the '..<' operator”

Only authorized users can answer the Search term. Please sign in first, or register a free account.