数组的字符串字典
blah: [String:[Stuff]]
对于给定的键,比如“foo”,我想知道该数组中有多少项 - 但是,如果没有这样的数组,我只想得到零。
我在做这个...
blah["foo"]?.count ?? 0
所以
if ( (blah.down["foo"]?.count ?? 0) > 0) {
print("some foos exist!!")
else {
print("there are profoundly no foos")
}
我对么?