Skip to content

Mul *

Makes a multiplication of it's arguments. Supports such types and their combinations: i64, I64, f64, F64.

> (* 1 2)
2
> (* 1.2 2.2)
2.64
> (* 1 3.4)
3.4
> (* [1 2 3] 3)
[3 6 9]
> (* [1 2 3] 3.1)
[3.1 6.2 9.3]
> (* 3.1 [1 2 3])
[3.1 6.2 9.3]