Reputation: 653
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.
Upvotes: 9
Views: 1700
Reputation: 51501
Perhaps the examples in the SBCL manual can help you for a start?
http://www.sbcl.org/manual/#Gray-Streams-examples
Upvotes: 5
Reputation: 17132
I found this useful. In SBCL, gray streams are in package :GRAY
.
Upvotes: 4