func dropFirst (Int) -> Slice<Set<Element>>
Returns a subsequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいる下位シーケンスを返します。
func dropLast (Int) -> Slice<Set<Element>>
Returns a subsequence containing all but the specified number of final elements.
指定された数の末尾要素以外すべてを含んでいる下位シーケンスを返します。
func popFirst () -> Element?
Removes and returns the first element of the set.
集合の最初の要素を削除して返します。