Skip to content

Instantly share code, notes, and snippets.

@blixt
Created November 25, 2015 21:48
Show Gist options
  • Save blixt/9a43c27c17c9986143b6 to your computer and use it in GitHub Desktop.
Save blixt/9a43c27c17c9986143b6 to your computer and use it in GitHub Desktop.
extension OrderedDictionary: DictionaryLiteralConvertible {
init(dictionaryLiteral elements: (Key, Value)...) {
for (key, value) in elements {
self[key] = value
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment