Fix make-array transforms.
[sbcl.git] / contrib / sb-simple-streams / sb-simple-streams.texinfo
1 Simple streams are an extensible streams protocol that avoids some
2 problems with Gray streams.
3
4 Documentation about simple streams is available at:
5
6 @uref{http://www.franz.com/support/documentation/6.2/doc/streams.htm}
7
8 The implementation should be considered Alpha-quality; the basic
9 framework is there, but many classes are just stubs at the moment. 
10
11 See @file{SYS:CONTRIB;SB-SIMPLE-STREAMS;SIMPLE-STREAM-TEST.LISP} for
12 things that should work.
13
14 Known differences to the ACL behaviour:
15
16 @itemize
17
18 @item
19 @code{open} not return a simple-stream by default. This can be
20 adjusted; see default-open-class in the file cl.lisp
21
22 @item
23 @code{write-vector} is unimplemented.
24
25 @end itemize