Instance Method インスタンスメソッド

popFirst()

Removes and returns the first element of the set. 集合の最初の要素を削除して返します。

Declaration 宣言

mutating func popFirst() -> Element?

Return Value 戻り値

A member of the set. If the set is empty, returns nil. 集合の中のひとつのメンバ。集合が空ならば、nilが返されます。

Discussion 解説

Because a set is not an ordered collection, the “first” element may not be the first element that was added to the set. 集合は順序付けられたコレクションではないことから、「最初」の要素は集合に加えられた最初の要素ではないでしょう。

See Also 参照

Excluding Elements 要素を除外する