Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eeue56/elm-lazy-list


https://github.com/eeue56/elm-lazy-list

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# elm-lazy-list

This package is used to represent an infinite list of values, to be computed as they are needed. It is mainly designed for use with Elm test.

singleton 5
|> cons 6
-- only evaluated here!
|> toList --> 6, 5