Macro may::go [] [src]

macro_rules! go {
    ($func: expr) => { ... };
    ($builder: expr, $func: expr) => { ... };
    ($cqueue: expr, $token: expr, $func: expr) => { ... };
}

macro used to spawn a coroutine

this macro is just a convenient wrapper for spawn. However the supplied coroutine block is not wrapped in unsafe block