Vocabularylists.
lazyInputsOutputsresult | lazy list merging list1 and list2 |
Word descriptionReturn the result of merging the two lists in a lazy manner.
ExamplesUSING: lists lists.lazy prettyprint ;
{ 1 2 3 } >list { 4 5 6 } >list lmerge list>array .
{ 1 4 2 5 3 6 }
See alsoleach,
foldl,
lmap-lazy,
ltake,
lfilter,
lappend-lazy,
lfrom,
lfrom-by,
lconcat,
lcartesian-product,
lcartesian-product*,
lcartesian-map,
lcartesian-map*,
lwhile,
luntilDefinition