The Wayback Machine - https://web.archive.org/web/20220324202213/https://github.com/topics/continuation
Skip to content
#

continuation

Here are 52 public repositories matching this topic...

rssh
rssh commented Jul 28, 2021

Track documentation from the point of novice and rewrite parts, which are hard to follow.
// And not forget about experienced developers' paths, who will not want to read 'Monad-101' intro for documentation on each library. Maybe write in addition a separate introduction to the library?

documentation enhancement help wanted good first issue
danielhenrymantilla
danielhenrymantilla commented Oct 3, 2020

In that regard, the crate currently only supports:

#[with]
let ... = <call>?...?

as well as:

#[with]
let ... = match <call> { ... }
// rest *after* match (same scope)

which unsugar(s) to:

with_<call>(..., |__anon__| {
    let ... = match __anon__ { ... };
    // rest *after* match (same scope)
})

But it would be really nice i

enhancement good first issue

Improve this page

Add a description, image, and links to the continuation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the continuation topic, visit your repo's landing page and select "manage topics."

Learn more