|
definition: |
product :: Num a => [a] -> a product ns = foldl (*) 1 ns |
|
demand: |
argument 2 |
|
deterministic: |
deterministic operation |
|
documentation: |
Returns the product of a list of integers. |
|
failfree: |
(_, _) |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_,_) |-> _}
|
|
name: |
product |
|
precedence: |
no precedence defined |
|
result-values: |
_ |
|
signature: |
Prelude.Num a => [a] -> a |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
yes |
|
totally-defined: |
reducible on all ground data terms |