definition: |
sequence :: Monad m => [m a] -> m [a] sequence [] = return [] sequence (c:cs) = do x <- c xs <- sequence cs return (x : xs) |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Executes a sequence of monadic actions and collects all results in a list. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{[]}) |-> _ || (_,{:}) |-> _} |
name: |
sequence |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Monad a => [a b] -> a [b] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |