(a -> IO ()) -> [a] -> IO ()
Close a file descriptor in a concurrency-safe way (GHC only). If you are using threadWaitRead or threadWaitWrite to perform blocking I/O, you must use this function to close file descriptors, or blocked threads may not be woken.
Any threads that are blocked on the file descriptor via threadWaitRead or threadWaitWrite will be unblocked by having IO exceptions thrown.
Map each element of a structure to an action, evaluate these actions from left to right, and ignore the results.
Close a file descriptor in a race-safe way.
Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results.
Extend a generic MonadPlus transformation by a type-specific case
Right-to-left Kleisli composition of monads. (>=>), with the arguments flipped
Left-to-right Kleisli composition of monads.
Extend a generic monadic transformation by a type-specific case
Make a generic monadic transformation for MonadPlus; use "const mzero" (i.e., failure) instead of return as default.
Make a generic monadic transformation; start from a type-specific case; resort to return otherwise
Type extension of monadic transformations for type constructors
Show more results