What does it mean if I only use the major version number in a Swift availability condition?
Eg, what's the difference between these two conditions?
if #available(iOS 10, *) { /* */ }
if #available(iOS 10.0, *) { /* */ }
Documentation: The Swift Programming Language: Control Flow: Checking API Availability