为什么过滤器返回一个数组是Swift 1.2

时间:2015-07-21 17:33:28

标签: swift

我正在使用swift 1.2。当我调用Public Function FindControlsForComments(frm As Form) Dim ctrl As Access.Control For Each ctrl In frm 'If the control is tagged for notes If ctrl.Tag = "Notes" Then 'If the old value is different than the current value If Nz(ctrl.OldValue, "") <> Nz(ctrl.Value, "") Then 'Add to comment Call pPEMoveValue(Nz(ctrl.Value, "")) End If End If Next ctrl End Function 时。我认为let filtered = filter(mySet, <some condition>)filtered具有相同的集合类型,但它始终是一个数组。我想知道逻辑是什么,因为Set,例如,没有订单。

0 个答案:

没有答案