CurryInfo: base-3.3.0 / Data.Maybe.catMaybes

definition:
catMaybes :: [Maybe a] -> [a]
catMaybes ms = [ m | (Just m) <- ms ]
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Return the list of all `Just` values.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
catMaybes
precedence:
no precedence defined
result-values:
_
signature:
[Prelude.Maybe a] -> [a]
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms