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
This operator is the conditional variant to Repeat, similar to TakeWhile and SkipWhile. It allows repeating the source sequence while a specific condition is true, where the condition is evaluated every time the source sequence completes.
The Rx terminology here is confusing, especially considering the Do operator is already used for something entirely different. We could consider exposing this operator as RepeatWhile instead.
The text was updated successfully, but these errors were encountered:
This operator is the conditional variant to
Repeat
, similar toTakeWhile
andSkipWhile
. It allows repeating the source sequence while a specific condition is true, where the condition is evaluated every time the source sequence completes.The Rx terminology here is confusing, especially considering the
Do
operator is already used for something entirely different. We could consider exposing this operator asRepeatWhile
instead.The text was updated successfully, but these errors were encountered: