# IsEmpty
IsEmpty() bool
判断一个Collection是否为空,为空返回true, 否则返回false
intColl := NewIntCollection([]int{1,2})
println(intColl.IsEmpty()) // false
← Index IsNotEmpty →
IsEmpty() bool
判断一个Collection是否为空,为空返回true, 否则返回false
intColl := NewIntCollection([]int{1,2})
println(intColl.IsEmpty()) // false
← Index IsNotEmpty →