Enum.product/1
defmodule Enum do
def product(enumerable)
end
Returns the product of all elements of enumerable
.
Raises ArithmeticError
if enumerable
contains a non-numeric value.
defmodule Enum do
def product(enumerable)
end
Returns the product of all elements of enumerable
.
Raises ArithmeticError
if enumerable
contains a non-numeric value.