Skip to content

Fdiv div

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

> (div 1 2)
0.5
> (div 1.2 2.2)
0.5454545454545454
> (div 1 3.4)
0.29411764705882354
> (div [1 2 3] 3)
[0.3333333333333333 0.6666666666666666 1]
> (div [1 2 3] 2.1)
[0.47619047619047616 0.9523809523809523 1.4285714285714286]
> (div 3.1 [1 2 3])
[3.1 1.55 1.0333333333333334]