朱莉娅不是运算符
我想知道是否存在使用不操作的somesort与功能这样的方式ismissing()
或isempty()
例如,如果我想要做这样的事情,我怎么会去了解它。
x = Array[]
y = missing
if x not isempty(x)
# do something
elif not ismissing(y)
# do something
end
这当然是不正确的,空数组可以用if length(x) >0
. 但我想知道是否有一种方法可以像在 python 中那样使用非运算符。例如,在 python numpy 库中,我可以做这样的事情来实现这一点,
y = np.nan
if y is not np.nan:
#do something
回答
这是!(x)
函数,例如!ismissing(x)
。