The predicate against which to evaluate the receiving ordered set’s elements. それに対して受け手側の順序集合のもつ要素を評価することになる述部。
Instance Method
インスタンスメソッド
filtered(using:)
Evaluates a given predicate against each object in the receiving ordered set and returns a new ordered set containing the objects for which the predicate returns true.
与えられた述部を受け手側の順序集合の中の各オブジェクトに対して評価して、その述部に対してtrueを返すオブジェクトを含んでいる新しい順序集合を返します。
Availability 有効性
- iOS 5.0+
- iPadOS 5.0+
- macOS 10.7+
- Mac Catalyst 13.1+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func filtered(using p: NSPredicate
) -> NSOrderedSet
Parameters パラメータ
predicate
Return Value 戻り値
A new ordered set containing the objects in the receiving ordered set for which predicate
returns true.
それに対してpredicate
がtrueを返す、受け手側の順序集合の中のオブジェクトを含んでいる新しい順序集合。
Discussion 議論
For more details, see Predicate Programming Guide. 詳細として、プレディケート プログラミングガイドを見てください。