Forked from asmallteapot/Dictionary.Value+RangeReplaceableCollection.swift
Created
August 9, 2018 01:39
-
-
Save jeremiasdsa/bff0f5e9eb83b7506cf43f25c04fdcf9 to your computer and use it in GitHub Desktop.
Swift: Append an element to an array in a dictionary value, creating the array/value if needed
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
import Foundation | |
extension Dictionary where Value: RangeReplaceableCollection { | |
public mutating func append(element: Value.Iterator.Element, toValueOfKey key: Key) -> Value? { | |
var value: Value = self[key] ?? Value() | |
value.append(element) | |
self[key] = value | |
return value | |
} | |
} |
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 books: [String: [String]] = [ | |
"Phillip K Dick": [ | |
"Do Androids Dream of Electric Sheep?", | |
"The Man in the High Castle", | |
], | |
"Cory Doctorow": [ | |
"Down and Out in the Magic Kingdom", | |
"Makers", | |
] | |
] | |
books.append(element: "Eastern Standard Tribe", toValueOfKey: "Cory Doctorow") | |
books | |
/* | |
[ | |
"Phillip K Dick": [ | |
"Do Androids Dream of Electric Sheep?", | |
"The Man in the High Castle", | |
], | |
"Cory Doctorow": [ | |
"Down and Out in the Magic Kingdom", | |
"Makers", | |
"Eastern Standard Tribe", | |
] | |
] | |
*/ | |
books.append(element: "Parable of the Sower", toValueOfKey: "Octavia Butler") | |
books | |
/* | |
[ | |
"Phillip K Dick": [ | |
"Do Androids Dream of Electric Sheep?", | |
"The Man in the High Castle", | |
], | |
"Cory Doctorow": [ | |
"Down and Out in the Magic Kingdom", | |
"Makers", | |
"Eastern Standard Tribe", | |
], | |
"Octavia Butler": [ | |
"Parable of the Sower", | |
] | |
] | |
*/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment