当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift Result.Publisher tryCompactMap(_:)用法及代码示例


实例方法

tryCompactMap(_:)

使用每个接收到的元素调用 error-throwing 闭包,并发布任何返回的具有值的可选。

声明

func tryCompactMap<T>(_ transform: @escaping (Self.Output) throws -> T?) -> Publishers.TryCompactMap<Self, T>

返回值

调用提供的闭包的任何非 nil 可选结果。

参数

transform

error-throwing 闭包,接收一个值并返回一个可选值。

详述

使用 Publisher/tryCompactMap(_:) 根据您提供的 error-throwing 闭包从发布者的流中删除 nil 元素。如果闭包抛出错误,发布者取消上游发布者并将抛出的错误作为 Publisher/Failure 发送给下游订阅者。

以下示例使用数字数组作为基于集合的发布者的源。 Publisher/tryCompactMap(_:) 运算符使用来自发布者的每个整数,并使用字典将数字从其阿拉伯数字转换为罗马数字,作为可选的 String

如果 Publisher/tryCompactMap(_:) 调用的闭包无法查找罗马数字,则返回可选字符串 (unknown)

如果 Publisher/tryCompactMap(_:) 调用的闭包确定输入是 0 ,则会引发错误。 Publisher/tryCompactMap(_:) 运算符捕获此错误并停止发布,发送包装错误的 Subscribers/Completion/failure(_:)


struct ParseError: Error {}
func romanNumeral(from: Int) throws -> String? {
    let romanNumeralDict: [Int : String] =
        [1: "I", 2: "II", 3: "III", 4: "IV", 5: "V"]
    guard from != 0 else { throw ParseError() }
    return romanNumeralDict[from]
}
let numbers = [6, 5, 4, 3, 2, 1, 0]
cancellable = numbers.publisher
    .tryCompactMap { try romanNumeral(from: $0) }
    .sink(
          receiveCompletion: { print ("\($0)") },
          receiveValue: { print ("\($0)", terminator: " ") }
     )


// Prints: "(Unknown) V IV III II I failure(ParseError())"

可用版本

iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Result.Publisher tryCompactMap(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。