Sid Heroor
Sid Heroor

Reputation: 653

Common lisp gray streams

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

Answers (2)

Svante
Svante

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

Frank Shearar
Frank Shearar

Reputation: 17132

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

Upvotes: 4

Related Questions