Tuple.product

You're seeing just the function product, go back to Tuple module for more information.
Link to this function

product(tuple)

View Source (since 1.12.0)

Specs

product(tuple()) :: number()

Computes a product of tuple elements.

Examples

iex> Tuple.product({255, 255})
65025
iex> Tuple.product({255, 1.0})
255.0
iex> Tuple.product({})
1