| 123456789101112131415161718192021222324252627282930 |
- //
- // CollectionExtensions.swift
- // MiaomiaoClientUI
- //
- // Created by Bjørn Inge Berg on 26/03/2019.
- // Copyright © 2019 Bjørn Inge Berg. All rights reserved.
- //
- import Foundation
- extension Collection {
- subscript(safe index: Index) -> Element? {
- indices.contains(index) ? self[index] : nil
- }
- }
- extension Array where Element: Hashable {
- func removingDuplicates() -> [Element] {
- var addedDict = [Element: Bool]()
- return filter {
- addedDict.updateValue(true, forKey: $0) == nil
- }
- }
- mutating func removeDuplicates() {
- self = self.removingDuplicates()
- }
- }
|