Top "Lazy-sequences" questions

Lazy sequences are sequences that are constructed as their members are accessed.

Lazy sequence generation in Rust

How can I create what other languages call a lazy sequence or a "generator" function? In Python, I can use …

rust lazy-sequences
Kotlin's Iterable and Sequence look exactly same. Why are two types required?

Both of these interfaces define only one method public operator fun iterator(): Iterator<T> Documentation says Sequence is …

kotlin iterable lazy-sequences
Clojure printing lazy sequence

I'm trying to print out my binary tree but Clojure is giving me a hard time printing out the sequences …

clojure lazy-sequences
Understanding a recursively defined list (fibs in terms of zipWith)

I'm learning Haskell, and came across the following code: fibs = 0 : 1 : zipWith (+) fibs (tail fibs) which I'm having a bit of …

list haskell lazy-evaluation fibonacci lazy-sequences