art-w
art-w
This proposal might not be the right bandage (maybe just expanding the documentation of `choose` would be better.) I ran into some issues with a recursive generator that was failing...
This is a follow up on the ["abort propagation on equality" PR](https://github.com/ocurrent/ocurrent/pull/318) -- I now think that it can be very useful to customize the equality operator in some specific...
Very nice library! Thank you for your work :) I wanted to use `Timere` to schedule cron-like tasks but I get stuck when I try to compute the next time...
I've been looking at the GC reachability traversal. I still have some ideas but I would like to avoid going down too far the wrong path because I overlooked something......
As reported by @mbarbin, when running `dune build @doc-new` with fatal warnings enabled in the dune env: ``` (env (dev (odoc (warnings fatal)))) (library (public_name foo) (libraries eio)) ``` ```...
I found the error message for partially applied functors to be confusing when the argument doesn't type check: ```ocaml module type A = sig type a val missing : a...
I'm getting a 400 Bad Request rather than the expected 404 NotFound: ```ocaml let () = Eio_main.run @@ fun env -> let response, _ = Cohttp_eio.Client.get env ~host:"bttracker.debian.org" ~port:6969 "/"...
I'm looking to port some existing code which does a [bind before connect](https://idea.popcount.org/2014-04-03-bind-before-connect/) and couldn't find a way to do it with Eio. I wasn't familiar with this trick, but...
It's currently expensive to merge a dynamic collection of events: The `E.merge` function only works on a fixed list, so on each change to the list, we need to re-merge...
I'm trying to merge a large number of events, which are mostly passive (only one or two triggers on each step.) The complexity of `E.merge` makes this prohibitive, since it...