Skip to content

Instantly share code, notes, and snippets.

@efremidze
Created May 2, 2017 06:36
Show Gist options
  • Save efremidze/0405d73e6683a29da263688b3207c29a to your computer and use it in GitHub Desktop.
Save efremidze/0405d73e6683a29da263688b3207c29a to your computer and use it in GitHub Desktop.
extension Dictionary {
subscript(key: Key, `default` value: Value) -> Value {
mutating get {
return self[key] ?? {
self[key] = value
return value
}()
}
set { self[key] = newValue }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment