Created
August 25, 2016 13:31
-
-
Save czechboy0/2a42aede8acab2b63a359dea24ce269b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import Foundation | |
extension Collection where Iterator.Element == (key: String, value: FileWrapper) { | |
func hello() -> String { | |
return "world" | |
} | |
} | |
let dict: [String: FileWrapper] = [:] | |
print(dict.hello()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment