-
-
Notifications
You must be signed in to change notification settings - Fork 632
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
docs(functional): cover sequence #2729
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
Preview in LiveCodesLatest commit: 86f38c8
See documentations for usage instructions. |
indentation and the easy-to-miss mistakes. However, plumbing a single async | ||
operation into another single async operation was not the end of the callback | ||
struggle. What if we made four network calls and needed to wait for them all? | ||
A snippet like this was common: |
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.
Am I correct here? I did not code collaboratively before the ES6 Promise, so this is just from my experience.
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.
I'm not 100% sure if it's correct...
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.
let's merge anyway
indentation and the easy-to-miss mistakes. However, plumbing a single async | ||
operation into another single async operation was not the end of the callback | ||
struggle. What if we made four network calls and needed to wait for them all? | ||
A snippet like this was common: |
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.
I'm not 100% sure if it's correct...
Related Bug Reports or Discussions
Fixes #2724
Summary
Show some examples of
sequence
to expand on advantages of seeing atoms as monads. Also add a list of other good resources to look at for monads.Check List
pnpm run prettier
for formatting code and docs