Yes, Swift's inference capabilities are pretty powerful. For example, for people who really want to have more powerful ifs, could define static methods on Bool. (Whether you should is another question).
struct Person {
let name: String
var age: Int
}
extension Bool {
static func canDrink(_ p: Person) -> Bool {
return p.age >= 21
}
}
let bob = Person(name: "Bob", age: 21)
let tom = Person(name: "Tom", age: 20)
if .canDrink(bob) {
print("Get \(bob.name) a cold one")
}
if !.canDrink(tom) {
print("\(tom.name) cannot drink")
}
It would be interesting if giving some of it up could speed up compilation time significantly and still allow the language to steer you towards safer code constructs.