Go to file
2022-11-18 15:30:19 +01:00
.gitignore initial commit 2022-11-18 15:30:19 +01:00
lazyList.py initial commit 2022-11-18 15:30:19 +01:00
README.md initial commit 2022-11-18 15:30:19 +01:00

Is it a list? Is it a generator? No its a

LazyList

Have you ever found yourself in a situation, where you used a generator, but then realized, that you sometimes need an element from further in the future? Or specific past element? This very specific problem is no more, thank to LazyList! (Wow!)

What does it do?

It's a list, that gets initialied using an iterable. The list uses the iterable to generate when new elements are accessed.

TODO: Bla