Swift version: 5.10
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 Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
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.