[IO ()] -> IO [()]
Evaluate each action in the sequence from left to right, and collect the results.
replicateM n act performs the action n times, gathering the results.
Lift a computation from the IO monad.
List of elements of a structure.
Flexible type extension
Type extension of readers for type constructors
Map each element of a structure to an action, evaluate these actions from left to right, and ignore the results.
Map a function over all the elements of a container and concatenate the resulting lists.
Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results.
Monadic fold over the elements of a structure, associating to the right, i.e. from right to left.
Show more results