Skip to content
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

Dependencies of various ways to write maybe-async code #9

Open
oli-obk opened this issue Jan 31, 2023 · 1 comment
Open

Dependencies of various ways to write maybe-async code #9

oli-obk opened this issue Jan 31, 2023 · 1 comment

Comments

@oli-obk
Copy link
Contributor

oli-obk commented Jan 31, 2023

graph TD
    feat[maybe async std] --> lib(maybe async libraries)
    lib --> lang[lang support]
    lib --> generic[generic galore]
    generic --> typenum[typenum style\nbounds horror]
    generic --> hard_for_lib[library authors\nwrite complex\nimpls]
    generic --> hard_for_user[users need to choose\nasync at call\nsites]
    lang --> effects
    effects --> typeck[typeck\ncomplexity]
    effects --> erica[trait solver\ncomplexity]
    effects --> types[type system\ncomplexity]
    lang --> desugar
    hard_for_lib -.->desugar
    desugar[desugaring async\nto generic galore]
    lang --> generic_defaults[generic param\ndefaults]
    hard_for_user -.-> generic_defaults
    hard_for_user -.-> generic_defaults_from_context[generic param\ndefaults inferred\nfrom context]
    lang --> generic_defaults_from_context
    typenum -.-> implied_bounds[implied bounds]
@yoshuawuyts

This comment was marked as resolved.

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

No branches or pull requests

2 participants