func insert(Element) -> (inserted: Bool, memberAfterInsert : Element)
Inserts the given element in the set if it is not already present.
それが既に存在するのでないならば、与えられた要素を集合へと挿入します。
func update(with: Element) -> Element?
Inserts the given element into the set unconditionally.
与えられた要素を集合へと無条件に挿入します。
func update<ConcreteElement>( with: ConcreteElement) -> ConcreteElement?
Available when
Element
is AnyHashable
.
Element
がAnyHashable
である時に利用可能です。
func reserveCapacity (Int)
Reserves enough space to store the specified number of elements.
指定された数の要素を格納するのに十分な空間を確保します。