func drop(while: ((key: Key, value: Value)) -> Bool) -> Slice<Dictionary<Key, Value>>
Returns a subsequence by skipping elements while
predicate
returns true
and returning the remaining elements.
predicate
がtrue
を返す間は要素を飛ばして残りの要素を返すことによって、ある下位シーケンスを返します。
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.
その辞書が空でないならば、辞書の中の最初のキー値ペアを削除して返します。