在Swift中执行地图时跳过项目?

时间:2016-03-29 19:26:27

标签: swift generics swift2 try-catch swift2.2

我将地图应用于其中包含GlobalCache的字典。如果映射的项目无效,我想跳过迭代。

例如:

try

在上面的示例中,如果func doSomething<T: MyType>() -> [T] dictionaries.map({ try? anotherFunc($0) // Want to keep non-optionals in array, how to skip? }) } 返回anotherFunc,如何转义当前迭代并继续下一步?这样,它就不会包含nil的项目。这可能吗?

1 个答案:

答案 0 :(得分:22)

只需将map()替换为flatMap()

extension SequenceType {
    /// Returns an `Array` containing the non-nil results of mapping
    /// `transform` over `self`.
    ///
    /// - Complexity: O(*M* + *N*), where *M* is the length of `self`
    ///   and *N* is the length of the result.
    @warn_unused_result
    public func flatMap<T>(@noescape transform: (Self.Generator.Element) throws -> T?) rethrows -> [T]
}
如果调用抛出错误,

try? ...会返回nil,所以那些 结果中将省略元素。

仅用于演示目的的自包含示例:

enum MyError : ErrorType {
    case DivisionByZeroError
}

func inverse(x : Double) throws -> Double {
    guard x != 0 else {
        throw MyError.DivisionByZeroError
    }
    return 1.0/x
}

let values = [ 1.0, 2.0, 0.0, 4.0 ]
let result = values.flatMap {
    try? inverse($0)
}
print(result) // [1.0, 0.5, 0.25]

对于 Swift 3,ErrorType替换为Error

Swift 4 使用compactMap