(a -> m b) -> a -> m c
Right-to-left Kleisli composition of monads. (>=>), with the arguments flipped
Left-to-right Kleisli composition of monads.
Same as >>=, but with the arguments interchanged.
Map each element of a structure to an action, evaluate these actions from left to right, and ignore the results.
Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results.
When you want to acquire a resource, do some work with it, and then release the resource, it is a good idea to use bracket, because bracket will install the necessary exception handler to release the resource in the event that an exception is raised during the computation. If an exception is raised, then bracket will re-raise the exception (after performing the release).
A common example is opening a file:
> bracket
> (openFile "filename" ReadMode)
> (hClose)
> (\fileHandle -> do { ... })
The arguments to bracket are in this order so that we can partially apply it, e.g.:
> withFile name mode = bracket (openFile name mode) hClose
When you want to acquire a resource, do some work with it, and then release the resource, it is a good idea to use bracket, because bracket will install the necessary exception handler to release the resource in the event that an exception is raised during the computation. If an exception is raised, then bracket will re-raise the exception (after performing the release).
A common example is opening a file:
> bracket
> (openFile "filename" ReadMode)
> (hClose)
> (\handle -> do { ... })
The arguments to bracket are in this order so that we can partially apply it, e.g.:
> withFile name mode = bracket (openFile name mode) hClose
Like bracket, but only performs the final action if there was an exception raised by the in-between computation.
Like bracket, but only performs the final action if there was an exception raised by the in-between computation.
Map a function over all the elements of a container and concatenate the resulting lists.
Map a function over a list and concatenate the results.
withMVar is a safe wrapper for operating on the contents of an MVar. This operation is exception-safe: it will replace the original contents of the MVar if an exception is raised (see Control.Exception).
Show more results