Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 687
Sid Heroor Avatar asked Apr 26 '10 04:04

Sid Heroor


2 Answers

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

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

like image 69
Svante Avatar answered Nov 04 '22 07:11

Svante


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

like image 3
Frank Shearar Avatar answered Nov 04 '22 06:11

Frank Shearar