Instance Method
インスタンスメソッド
filter(using:)
Evaluates a given predicate against the array’s content and leaves only objects that match.
与えられた述部を配列のもつ内容と照らし合わせて評価して、合致するオブジェクトのみを残します。
Parameters
パラメータ
predicate
The predicate to evaluate against the array’s elements.
配列の要素と照らし合わせて評価を行う述部。
See Also
参照
Related Documentation
関連文書
func filtered(using: NSPredicate) -> [Any]
Evaluates a given predicate against each object in the receiving array and returns a new array containing the objects for which the predicate returns true.
与えられた述部を受け手側の配列の中の各オブジェクトに対して評価して、その述部に対してtrueを返すオブジェクトを含んでいる新しい配列を返します。