import Combine typealias CancelBag = Set extension CancelBag { mutating func cancelAll() { forEach { $0.cancel() } removeAll() } }