slack1
2017-12-27 19:41:11

Is a linked list what is meant by lazy list?


brendan
2017-12-27 19:41:50

No. A lazy list doesn’t compute the value of its elements until you force it to


slack1
2017-12-27 19:42:02

Ah so the lists aren’t lazy by default


brendan
2017-12-27 19:42:08

Nope


slack1
2017-12-27 19:42:26

So a stream would be closer to what I want then


brendan
2017-12-27 19:42:31

Yes


slack1
2017-12-27 19:42:52

ah cool thanks