You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
KtIterable.takeWhile(predicate) as well as KtList.takeLast(n) and KtList.takeLastWhile(predicate) have been added.
The *Last methods are only available to KtList because KtIterables may not have an end.
KtIterable.takeLast(n)
is missing, analog todropLast(n)
.Also
KtIterable.takeLastWhile
is missing, analog todropLastWhile(n)
The text was updated successfully, but these errors were encountered: