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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。