Skip to content

Instantly share code, notes, and snippets.

@ajjames
Last active August 29, 2015 14:11
Show Gist options
  • Save ajjames/37deb5f35b492e0692b4 to your computer and use it in GitHub Desktop.
Save ajjames/37deb5f35b492e0692b4 to your computer and use it in GitHub Desktop.
DictionaryExtension to get implicit type
internal extension Dictionary
{
internal func get<V>(key:Key) -> V? {
return self.indexForKey(key) as? V
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment