resets the Fiber to be reused with another method
usage of reset
{ bool res; auto fiber = new UEFiber(cast(UEFiberDelegate) { res = false; }); fiber.reset(cast(UEFiberDelegate) { res = true; }); fiber.call(); assert(res)
See Implementation
resets the Fiber to be reused with another method