-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are we missing skipLast operator? #1404
Comments
Maybe. The use-cases for skipLast are slim. But it seems like a missing operator. I'd say it's probably not a core operator though. |
I'd add it just for symmetry. It's not something I'm really pushing for. Just stumbled upon this when writing docs. |
i have an issue because of that this is no longer available in Rx5 |
Adds skipLast operator from RxJS 4. Its internals and tests are based on takeLast for better performance. Closes ReactiveX#1404
* feat(skipLast): adds skipLast operator Adds skipLast operator from RxJS 4. Its internals and tests are based on takeLast for better performance. Closes #1404 * docs(skipLast): updated decision tree, MIGRATION.md and operators.md * docs(skipLast): fix tree.yml as suggested by @staltz * refactor(skipLast): refactored skipLast operator
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
We currently don't have skipLast implemented. Are we removing it intentionally or just forgot to build it?
Notice the discrepancy here:
skip
skipUntil
skipWhile
take
takeLast
takeUntil
takeWhile
The text was updated successfully, but these errors were encountered: