Created
October 12, 2014 19:23
-
-
Save blakemerryman/f52b73e7ebe9daa69b52 to your computer and use it in GitHub Desktop.
Adds .length to Swift Strings
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
public extension String { | |
var length : Int { return countElements(self) } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment