1lazy-list ( a -- lazy-cons )
Lazy lists ยป Constructing lazy lists

Prev:lazy-cons ( car cdr -- promise )
Next:2lazy-list ( a b -- lazy-cons )


Vocabulary
lists.lazy

Inputs
aa quotation with stack effect ( -- X )


Outputs
lazy-consa lazy-cons object


Word description
Create a lazy list with 1 element. The element is the result of calling the quotation. The quotation is only called when the list element is requested.

See also
2lazy-list, 3lazy-list

Definition