-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
feat: Add the Tail
higher-order stream
#69
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hywan
force-pushed
the
feat-im-util-rlimit
branch
4 times, most recently
from
January 17, 2025 10:40
181ff00
to
499281e
Compare
Hywan
force-pushed
the
feat-im-util-rlimit
branch
from
January 17, 2025 11:10
4d6177d
to
69f4f52
Compare
Hywan
added a commit
to Hywan/eyeball
that referenced
this pull request
Jan 20, 2025
This patch renames the higher-order stream `Limit` to `Head`. It is a reaction to the upcoming jplatte#69 where I've initially proposed the name `RLimit`. After a short thinking, I believe renaming `Limit` to `Head` and `RLimit` to `Tail` would be better names. This patch renames `Limit` to `Head`.
Hywan
force-pushed
the
feat-im-util-rlimit
branch
from
January 20, 2025 13:35
69f4f52
to
e5d9883
Compare
Rebased on top of #70, and renamed |
Hywan
changed the title
feat: Add the
feat: Add the Jan 20, 2025
RLimit
higher-order streamTail
higher-order stream
Hywan
added a commit
that referenced
this pull request
Jan 22, 2025
This patch renames the higher-order stream `Limit` to `Head`. It is a reaction to the upcoming #69 where I've initially proposed the name `RLimit`. After a short thinking, I believe renaming `Limit` to `Head` and `RLimit` to `Tail` would be better names. This patch renames `Limit` to `Head`.
Hywan
force-pushed
the
feat-im-util-rlimit
branch
from
January 22, 2025 18:47
ba6437a
to
77d6e68
Compare
This patch adds the `Tail` higher-order stream. Similarly to `Head`, it computes a limited view of the underlying `ObservableVector`'s items, however the view starts from the end —instead of the start— of the `ObservableVector`
Hywan
force-pushed
the
feat-im-util-rlimit
branch
from
January 22, 2025 18:52
77d6e68
to
fd06b17
Compare
Rebased on top of |
jplatte
approved these changes
Jan 28, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch adds the
Tail
higher-order stream. Similarly toHead
,it computes a limited view of the underlying
ObservableVector
'sitems, however the view starts from the end —instead of the start— of
the
ObservableVector
.Limit
toHead
#70, should be merged after