Author
Copyright (c) 2005 David Lichteblau
Homepage
Mailing List
Send bug reports to trivial-gray-streams devel.
Download
The library is available via Quicklisp. A snapshot tarball is available from github tarball.
Source Code
The Git repository is at github source code.
Documentation
An online documentation is available at trivial-gray-streams API documentation.
Dependencies
trivial-gray-streams does not depend on other libraries.
How to use it
- Use the package trivial-gray-streams instead of whatever implementation specific package you would have to use otherwise to get gray stream symbols.
- For stream-read-sequence and stream-write-sequence, notice that we use two required arguments and allow additional keyword arguments. So the lambda list when defining a method on either function should look like this: (stream sequence start end &key)
- In order for (2) to work on all Lisps, make sure to subclass all your stream classes from trivial-gray-stream-mixin if you intend to define methods on those two generic functions.
Topics: trivial stream system programming