«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

올해는 머신러닝이다.

swift array to Set 본문

IOS/예제모음

swift array to Set

행복한 수지아빠 2017. 7. 17. 12:39
extension Array {
    func mapArray<T>(_ transform: (Array) -> T) -> T {
        return transform(self)
    }
}

Then you can pass in the Set initializer to the new mapArray function

objectArray
    .map({ $0.URL })
    .mapArray(Set.init)