diff options
author | Mark H Weaver <mhw@netris.org> | 2013-03-26 21:03:42 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-03-27 13:37:45 -0400 |
commit | 80b809f114e9f3978aa6571affd343f34732fb94 (patch) | |
tree | ec860b815e494d4442c6572acc8926f7ea0835c6 /doc/ref/misc-modules.texi | |
parent | 50d08cd8943dd54762d76746d5eec53af178eeae (diff) | |
download | guile-80b809f114e9f3978aa6571affd343f34732fb94.tar.gz |
Add full documentation for SRFI-41.
* doc/ref/misc-modules.texi (Streams): Add cross-reference to SRFI-41.
* doc/ref/srfi-modules.texi (SRFI-41): Replace stub with full
documentation.
(SRFI-41 Stream Fundamentals, SRFI-41 Stream Primitives,
SRFI-41 Stream Library): New subsubsections.
Diffstat (limited to 'doc/ref/misc-modules.texi')
-rw-r--r-- | doc/ref/misc-modules.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/ref/misc-modules.texi b/doc/ref/misc-modules.texi index cf1e0e49f..c1e65d7e3 100644 --- a/doc/ref/misc-modules.texi +++ b/doc/ref/misc-modules.texi @@ -1573,6 +1573,9 @@ modifies the queue @var{list} then it must either maintain @section Streams @cindex streams +This section documents Guile's legacy stream module. For a more +complete and portable stream library, @pxref{SRFI-41}. + A stream represents a sequence of values, each of which is calculated only when required. This allows large or even infinite sequences to be represented and manipulated with familiar operations like ``car'', |