Created
June 14, 2017 01:24
-
-
Save adagio/ceb7010ca70fe3342e5809af51427bba to your computer and use it in GitHub Desktop.
Map for string characters
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
var str = "Hello, playground" | |
var strings = [String]() | |
str.characters.map{strings.append(String($0))} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment