Not really sure if this is a smart question but:
Why are there no select actions implemented for IO operations?
On first glance, it would simplify things if one could intermix inter fiber communication (channels) with inter process communication (like sockets) in select statements.
select doesn’t seem like it’s needed for this because we have better things like IO#peek [IO - Crystal 1.13.1] that would better to use than select would. select exists because Channel only has send and receive which is a big deal because we don’t have any non-blocking way to check if a channel has things waiting in it, if it needs a timeout, or if its empty or not. At the same time, you can enact anything you need to do with any IO though a Channel as well, which may be needed if you are doing something multi-fiber with the results of an IO. There are a lot of ways to skin that cat and it should be left up to the system designer to design how that should work.
IMO: we shouldn’t document how select actions are implemented. First it’s an implementation detail, and second you can’t write your own actions anyway, because you must implement undocumented abstract types that are private to Channel.