Swift version: 5.2
All Swift’s ranges come with a built-in contains()
method that lets us check whether one value lies inside or outside the range. For example, given this range:
let passRange = 85...100
And this integer:
let score = 88
We can check whether score
lies inside passRange
using contains()
, like this:
if passRange.contains(score) {
print("You passed the test!")
} else {
print("Better luck next time.")
}
SPONSORED Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.