Methods

*ΒΆ

*(a:Arr, b:Arr)

Cartesian product
Source: stdlib.ngs:1451

Returns

Arr of Arr[2]

Example

[10,20] * [30,40]  # [[10, 30], [10, 40], [20, 30], [20, 40]]