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

Prev:lcartesian-product ( list1 list2 -- result )
Next:lmerge ( list1 list2 -- result )


Vocabulary
lists.lazy

Inputs
listsa list of lists


Outputs
resultlist of cartesian products


Word description
Given a list of 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