func filter(using: NSPredicate)
Evaluates a given predicate against the set’s content and removes from the set those objects for which the predicate returns false.
与えられた述部を集合のもつ内容に対して評価します、そして集合からそれに対して述部がfalseを返すオブジェクトそれらを取り除きます。
func remove(Any)
Removes a given object from the set.
ある与えられたオブジェクトをこの集合から取り除きます。
func removeAllObjects ()
Empties the set of all of its members.
それのメンバの全てからなる集合を空にします。
func addObjects (from: [Any])
Adds to the set each object contained in a given array that is not already a member.
この集合に、ある与えられた配列の中に含まれる各オブジェクトでまだメンバでないものを加えます。