doc.txt

Stream

_Stream_
_stream_

This collection provides one file:

 _stream.ss_: useful library procedures for operating on streams.

======================================================================

This library provides a set of library procedures similar to those of
SRFI 1, but for operating on the stream library of SRFI 40.

You will almost always want to import the SRFI 40 library:

    (require (lib "stream.ss" "srfi" "40"))

======================================================================

Provided functions:

> stream-xcons
> stream-cons*
> make-stream
> stream-tabulate
> stream-copy
> circular-stream
> stream-iota
> list->stream
> thunk->stream
> stream-first
> stream-second
> stream-third
> stream-fourth
> stream-fifth
> stream-sixth
> stream-seventh
> stream-eighth
> stream-ninth
> stream-tenth
> stream-take
> stream-drop
> stream-split-at
> stream-append
> stream-zip
> stream-filter-map
> stream-append-map
> stream-partition
> stream-remove
> stream-member
> stream-memq
> stream-memv
> stream-find
> stream-find-tail
> stream-take-while
> stream-drop-while
> stream-span
> stream-break
> stream-any
> stream-every
> stream-index
> stream-delete
> stream->list
> stream-ref