definition: |
nub :: Eq a => [a] -> [a] nub xs = nubBy (==) xs |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Removes all duplicates in the argument list. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {:,[]}} |
name: |
nub |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
Prelude.Eq a => [a] -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |