yield
fn
void yield() nothrowIf the caller is a Fiber and is not a Generator, this function will call scheduler.yield() or Fiber.yield(), as appropriate.
fn
void yield(T)(ref T value)Yields a value of type T to the caller of the currently executing generator.
Parameters
value | The value to yield. |
fn
void yield(T)(T value)ditto