definition: |
maybeToList :: Maybe a -> [a] maybeToList Nothing = [] maybeToList (Just a) = [a] |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Return an empty list for `Nothing` or a singleton list for `Just x`. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Nothing}) |-> {[]} || ({Just}) |-> {:}} |
name: |
maybeToList |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
Prelude.Maybe a -> [a] |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |