func filter((Element) -> Bool) -> Set<Element>
Returns a new set containing the elements of the set that satisfy the given predicate.
この集合の要素で与えられた述部を満たすものを含んでいる新しい集合を返します。
func remove(Element) -> Element?
Removes the specified element from the set.
指定された要素を集合から削除します。
func remove<ConcreteElement>(ConcreteElement) -> ConcreteElement?
Available when
Element
is AnyHashable
.
Element
がAnyHashable
である時に利用可能です。
func removeFirst () -> Element
Removes the first element of the set.
集合の最初の要素を削除します。
func remove(at: Set<Element>.Index) -> Element
Removes the element at the given index of the set.
与えられたインデックスでの集合の要素を返します。