Last active
July 8, 2018 12:20
-
-
Save lorentey/d679064cb29df4558534d619319a1d9e to your computer and use it in GitHub Desktop.
The most annoying thing about Swift 3's naming conventions is that some renamed members now shadow frequently used global functions:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Array where Element: Comparable { | |
func clamp(from lowerBound: Element, to upperBound: Element) -> Array { | |
return self.map { min(upperBound, max(lowerBound, $0)) } | |
} | |
} | |
let clamped = [0, 1, 2, 3, 4, 5, 6].clamp(from: 2, to: 4)) |
The problem is that Sequence
has min
and max
methods (renamed from minElement
and maxElement
) that hide the global min
and max
functions. The straightforward workaround is to prefix the global names with their module name, i.e., to use Swift.max
and Swift.min
.
Again, this is more a bug report territory than "the language has changed, how do I do things the new way". :(
Just got bit by this one.
Renaming “minElement” and “maxElement” to “min” and “max” was well-intentioned, but having to write Swift.min(Int, Int) is not an improvement.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Swift 2.2:
Swift 3: