Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eeue56/elm-lazy-list
https://github.com/eeue56/elm-lazy-list
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eeue56/elm-lazy-list
- Owner: eeue56
- License: bsd-3-clause
- Created: 2017-07-01T19:57:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-26T16:43:08.000Z (over 6 years ago)
- Last Synced: 2024-10-30T01:38:16.226Z (3 months ago)
- Language: Elm
- Size: 15.6 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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