func dropFirst (Int) -> Slice<Dictionary<Key, Value>>
Returns a subsequence containing all but the given number of initial elements.
指定された数の冒頭要素以外すべてを含んでいる下位シーケンスを返します。
func dropLast (Int) -> Slice<Dictionary<Key, Value>>
Returns a subsequence containing all but the specified number of final elements.
指定された数の末尾要素以外すべてを含んでいる下位シーケンスを返します。
func popFirst () -> Dictionary<Key, Value>.Element?
Removes and returns the first key-value pair of the dictionary if the dictionary isn’t empty.
その辞書が空でないならば、辞書の中の最初のキー値ペアを削除して返します。