Common lisp gray threads

Is there a tutorial on using gray streams?

I want to create a class that reads from a file, looking for a specific set of bytes. My initial thought was to use gray streams, but could not find any source information.

+7
stream common-lisp
source share
2 answers

I found this helpful. In SBCL, gray streams are in the package :GRAY .

+3
source share

Perhaps the examples from the SBCL guide can help you get started?

http://www.sbcl.org/manual/#Gray-Streams-examples

+4
source share

All Articles