We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Promise wants to hold an array of callbacks, each of which is a Callback with completion from T -> any arbitrary type U
The idea is to map from Promise<T> -> Promise<U> using then: T -> U The problem is then acts as both subscribe and map
Promise<T> -> Promise<U>
then: T -> U
then
subscribe
map
The text was updated successfully, but these errors were encountered:
For now, Result<T> -> Result<U> does not hint the generic engine, so we must use as to use hint from the returned type Promise<U>
Result<T> -> Result<U>
as
Promise<U>
Sorry, something went wrong.
Use register block, basically, it is Result<T> -> Void, and returned promise do its notify inside this register block
Result<T> -> Void
promise
notify
No branches or pull requests
Promise wants to hold an array of callbacks, each of which is a Callback with completion from T -> any arbitrary type U
The idea is to map from
Promise<T> -> Promise<U>
usingthen: T -> U
The problem is
then
acts as bothsubscribe
andmap
The text was updated successfully, but these errors were encountered: