-
Notifications
You must be signed in to change notification settings - Fork 55
combineLatest #49
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
combineLatest #49
Conversation
| /// Merges two async sequences using the specified combine function. The resulting async sequence produces an element when either | ||
| /// input sequence produces an element, passing the new element from the emitting sequence and the previously emitted element from the other sequence. | ||
| /// If either of the input sequences is empty, the resulting sequence is empty. | ||
| val combineLatestAsync : combine:('T -> 'U -> Async<'V>) -> source1:AsyncSeq<'T> -> source2:AsyncSeq<'U> -> AsyncSeq<'V> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably start writing samples for each function in the docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. Adding for this one shortly.
|
Should this be renamed to |
| c0 = f a0 b0 | ||
| c1 = f a0 b1 | ||
| c2 = f a1 b1 | ||
| c4 = f a2 b1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be c3, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's correct, thanks.
No description provided.