Skip to content

Instantly share code, notes, and snippets.

@blakemerryman
Created October 12, 2014 19:23
Show Gist options
  • Save blakemerryman/f52b73e7ebe9daa69b52 to your computer and use it in GitHub Desktop.
Save blakemerryman/f52b73e7ebe9daa69b52 to your computer and use it in GitHub Desktop.
Adds .length to Swift Strings
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