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


Swift Result.Publisher replaceNil(with:)用法及代碼示例


實例方法

replaceNil(with:)

用提供的元素替換流中的 nil 元素。

聲明

func replaceNil<T>(with output: T) -> Publishers.Map<Self, T> where Self.Output == T?

返回值

使用提供的元素替換上遊發布者的nil 元素的發布者。

參數

output

替換 nil 時要使用的元素。

詳述

Publisher/replaceNil(with:) 運算符允許用替換值替換流中的nil 值。在下麵的示例中,集合發布者包含一個 nil 值。 Publisher/replaceNil(with:) 運算符將其替換為 0.0


let numbers: [Double?] = [1.0, 2.0, nil, 3.0]
numbers.publisher
    .replaceNil(with: 0.0)
    .sink { print("\($0)", terminator: " ") }


// Prints: "Optional(1.0) Optional(2.0) Optional(0.0) Optional(3.0)"

可用版本

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

相關用法


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