Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexknauth/typed-racket-stream
streams for typed racket
https://github.com/alexknauth/typed-racket-stream
Last synced: about 1 month ago
JSON representation
streams for typed racket
- Host: GitHub
- URL: https://github.com/alexknauth/typed-racket-stream
- Owner: AlexKnauth
- License: mit
- Created: 2015-04-07T03:53:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-03T17:35:09.000Z (2 months ago)
- Last Synced: 2024-11-03T18:26:58.746Z (2 months ago)
- Language: Racket
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
typed-racket-stream
===
A typed wrapper for using streams in typed racket.Typed racket (as of racket version 6.3) doesn't have a type for streams, so this
uses `(Sequenceof a)` as the type for streams. Every stream is a valid sequence,
but not every sequence is a valid stream. It will raise an exception late at
runtime when given a sequence that is not a stream.