3lazy-list ( a b c -- lazy-cons )
Lazy lists ยป Constructing lazy lists

Prev:2lazy-list ( a b -- lazy-cons )
Next:sequence-tail>list ( index seq -- list )


Vocabulary
lists.lazy

Inputs
aa quotation with stack effect ( -- X )
ba quotation with stack effect ( -- X )
ca quotation with stack effect ( -- X )


Outputs
lazy-consa lazy-cons object


Word description
Create a lazy list with 3 elements. The elements are the result of calling the quotations. The quotations are only called when the list elements are requested.

See also
1lazy-list, 2lazy-list

Definition