2017-08-21 06:23:17 +02:00
|
|
|
//
|
|
|
|
// Feed+Database.swift
|
|
|
|
// Database
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 8/20/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Data
|
|
|
|
|
|
|
|
extension Set where Element == Feed {
|
|
|
|
|
|
|
|
func feedIDs() -> Set<String> {
|
|
|
|
|
2017-08-21 07:43:46 +02:00
|
|
|
return Set<String>(map { $0.feedID })
|
2017-08-21 06:23:17 +02:00
|
|
|
}
|
|
|
|
}
|