couple

get combination of elements in given collections as array of tuples


Parameters

couple collectionA :block
       collectionB :block

Returns

  • :block

Examples

copy
couple ["one" "two" "three"] [1 2 3] ; => [[1 "one"] [2 "two"] [3 "three"]]

Related