Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created June 3, 2014 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cruffenach/3de3b6225030c957f99a to your computer and use it in GitHub Desktop.
Save cruffenach/3de3b6225030c957f99a to your computer and use it in GitHub Desktop.
Swift String Length Extension
extension String {
var length : Integer {
get {
return countElements(self)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment