我有一个像这样声明的数组-arr = []
。我想看看是不是空的。我试过:count(arr)==0
,is_null(arr)
,arr==[]
和arr==""
。
使用count
将是惯用的方法:
arr_is_empty {
count(arr) == 0
}