I've written a struct that holds basic Asset data:
struct Asset: AssetProtocol {
init (id: Int = 0, url: String) {
self.id = id
self.url = URL(string: url)
}
var id: Int
var url: URL?
}
It subscribes to AssetProtocol
protocol AssetProtocol {
var id: Int { get }
var url: URL? { get }
}
I'm hoping to extend the Array (Sequence) where the elements in that Array are items that subscribe to the AssetProtocol. Also, for these functions to be able to mutate the Array in place.
extension Sequence where Iterator.Element: AssetProtocol {
mutating func appendUpdateExclusive(element newAsset: Asset) {
...
How can I iterate through and mutate this sequence? I've tried half a dozen ways and can't seem to get it right!