zigcoro icon indicating copy to clipboard operation
zigcoro copied to clipboard

A Zig coroutine library

Results 7 zigcoro issues
Sort by recently updated
recently updated
newest added

When running this basic code I get a segmentation fault on the line where I `xawait`. This is the code: ```const std = @import("std"); const libcoro = @import("libcoro"); fn myCoroutine(x:...

Hey, I was wondering what you meant by those in the "Future work" section: - Libraries - TLS, HTTP, WebSocket - Actors -Recursive data structure iterators - Parsers And alose...

(moved from #15 since this is a separate issue) ## Reproduction Zig 0.11.0 - checkout the branch from #14 - `zig build test`

Try to implement a xselect like how it works on go/ may in Rust, and find that the current channel only support spsc. ``` pub fn xselect(tuples: anytype) !void {...

assume I have a function that uses xawait, and I called it without using xasync or xawait, what happens, does it crash?