views:

74

answers:

2

Is there a tutorial on how to use gray streams?

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

+3  A: 

Perhaps the examples in the SBCL manual can help you for a start?

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

Svante
+2  A: 

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

Frank Shearar