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


Julia @coalesce用法及代碼示例


用法:

@coalesce(x...)

coalesce 的短路版本。

例子

julia> f(x) = (println("f($x)"); missing);

julia> a = 1;

julia> a = @coalesce a f(2) f(3) error("`a` is still missing")
1

julia> b = missing;

julia> b = @coalesce b f(2) f(3) error("`b` is still missing")
f(2)
f(3)
ERROR: `b` is still missing
[...]

Julia 1.7

這個宏從 Julia 1.7 開始可用。

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.@coalesce — Macro。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。