History
No history yet
Zip
Pairs elements across brace sets by position. All sets must have the same number of values.
{1,2,3} × {6,7,8} → {1,6} {2,7} {3,8}Cartesian
Produces every combination across brace sets. Total combinations must not exceed 20.
{1,2} × {6,7} → {1,6} {1,7} {2,6} {2,7}Press Ctrl/⌘ + Enter to run