lcartesian-product ( list1 list2 -- result )
Lazy lists ยป Manipulating lazy lists

Prev:lconcat ( list -- result )
Next:lcartesian-product* ( lists -- result )


Vocabulary
lists.lazy

Inputs
list1a list
list2a list


Outputs
resultlist of cartesian products


Word description
Given two lists, return a list containing the cartesian product of those lists.

See also
leach, foldl, lmap-lazy, ltake, lfilter, lappend-lazy, lfrom, lfrom-by, lconcat, lcartesian-product*, lcartesian-map, lcartesian-map*, lmerge, lwhile, luntil

Definition