tomt_async 0.1.3

Primarily a dumping ground for personal async snippets that may be used in other ToMT projects. If this crate is useful to others please let us know.
Documentation
1
2
3
4
5
6
7
pub(crate) mod r#yield;
use r#yield::Yield;

pub async fn r#yield()
{
    Yield{yielded: false}.await
}