definition: |
unionMap :: Eq b => (a -> [b]) -> [a] -> [b] unionMap f = foldr union [] . (map (nub . f)) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Map a list-valued function on a list and remove duplicates. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {.._#lambda508}} |
name: |
unionMap |
precedence: |
no precedence defined |
result-values: |
{.._#lambda508} |
signature: |
Prelude.Eq b => (a -> [b]) -> [a] -> [b] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |