Skip to content

Javadoc: Overveable.takeWhile vs. takeUntil: the condition is inverted #7856

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

Open
wants to merge 1 commit into
base: 3.x
Choose a base branch
from

Conversation

ePaul
Copy link

@ePaul ePaul commented Apr 14, 2025

The current description of the difference between takeWhile and takeUntil just points to the evaluation time (before or after the element is emitted), but the (IMHO) more important fact is that the predicate is inverted between both: takeWhile emits just elements where the predicate is true, takeUntil just elements where the predicate is false (and the first true one).

…akeUntil.

The current description of the difference between takeWhile and takeUntil just points to the evaluation time (before or after the element is emitted), but the (IMHO) more important fact is that the predicate is inverted between both: one emits just elements where the predicate is true, the other just elements where the predicate is false (and the first true one).
@ePaul
Copy link
Author

ePaul commented Apr 15, 2025

The same sentence appears already in the 1.x and 2.x docs, but I suppose there is no point in fixing that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants