Instance Method

drop(while:)

Returns a subsequence by skipping elements while predicate returns true and returning the remaining elements.

Declaration

func drop(while predicate: ((key: Key, value: Value)) throws -> Bool) rethrows -> Slice<Dictionary<Key, Value>>

Parameters

predicate

A closure that takes an element of the sequence as its argument and returns true if the element should be skipped or false if it should be included. Once the predicate returns false it will not be called again.

Discussion

Complexity: O(n), where n is the length of the collection.

See Also

Excluding Elements

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.