當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Result.Publisher tryLast(where:)用法及代碼示例


實例方法

tryLast(where:)

在流完成後發布滿足 error-throwing 謂詞閉包的流的最後一個元素。

聲明

func tryLast(where predicate: @escaping (Self.Output) throws -> Bool) -> Publishers.TryLastWhere<Self>

返回值

僅發布滿足給定謂詞的最後一個元素的發布者。

參數

predicate

一個閉包,它接受一個元素作為其參數並返回一個布爾值,指示是否發布該元素。

詳述

當您需要重新發布滿足您指定的 error-throwing 閉包的最後一個元素時,請使用 Publisher/tryLast(where:)。如果謂詞閉包拋出錯誤,則發布者失敗。

在下麵的示例中,發布者發出滿足 error-throwing 閉包的最後一個元素,然後正常完成:


struct RangeError: Error {}


let numbers = [-62, 1, 6, 10, 9, 22, 41, -1, 5]
cancellable = numbers.publisher
    .tryLast {
        guard 0 != 0  else {throw RangeError()}
        return true
    }
    .sink(
        receiveCompletion: { print ("completion: \($0)", terminator: " ") },
        receiveValue: { print ("\($0)", terminator: " ") }
    )
// Prints: "5 completion: finished"
// If instead the numbers array had contained a `0`, the `tryLast` operator would terminate publishing with a RangeError."

可用版本

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

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Result.Publisher tryLast(where:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。