This file is indexed.

/usr/lib/s9fes/help/make-stream is in scheme9 2010.11.13-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
S9 LIB  (make-stream obj1 proc1 proc2 proc3 proc4 obj2)  ==>  stream
        (stream-any object)                              ==>  #t
        (stream-none object)                             ==>  #f
        (stream-id object)                               ==>  object
        (stream-value stream)                            ==>  object
        (stream-next stream)                             ==>  stream
        (stream-eos? object)                             ==>  boolean
        (list->stream list)                              ==>  stream
        (stream->list stream)                            ==>  list
        (map-stream procedure stream)                    ==>  stream
        (filter-stream procedure stream)                 ==>  stream
        (append-streams stream ...)                      ==>  stream
        (stream-member procedure stream)                 ==>  stream
        (stream-extract integer stream)                  ==>  list
        (stream-iota integer1 integer2)                  ==>  stream

        (load-from-library "streams.scm")

These procedures implement purely functional streams. The most
general procedure for creating a new stream is MAKE-STREAM,
whose arguments are as follows:

OBJ1 is the initial object to be stored in the stream, e.g.
the first number of a sequence or a list object when the
stream is to produce the members of a list.

PROC1 fetches the current value of OBJ1 and returns it.
This would be CAR for list objects or STREAM-ID for numeric
streams.

PROC2 is a filter that selects specific members from OBJ1.
For instance, EVEN? would make sure that a given numeric
stream would produce only even numbers. STREAM-ANY would
pass through all values.

PROC3 generates a new value, i.e. it turns OBJ1 into OBJ1',
where OBJ1' is the next member of the sequence produced by
the stream. CDR would typically be used in a list stream
and (lambda (x) (+ 1 x)) in a stream enumerating integers.

PROC4 checks whether the end of the stream has been reached.
In list streams, this would be NULL?. Infinite streams can
be created by specifying STREAM-ANY or STREAM-INDEFINITE.

OBJ2 is the final object to be delivered. This is typically
*STREAM-EOS*, but this argument can also be used to
concatenate streams. In infinite streams, this value does
not matter.

STREAM-VALUE returns the current value of a stream.
STREAM-NEXT advances to the next value of a stream.
STREAM-EOS? checks if a stream has been exhausted (end of stream).

LIST->STREAM and STREAM->LIST convert lists to streams and
vica versa. STREAM-EXTRACT is like STREAM->LIST, but extracts
only a given number of arguments. The stream passd to it must
be able to produce the given number of arguments.

MAP-STREAM, STREAM-MEMBER, and APPEND-STREAMS resemble the
corresponding Scheme functions.

FILTER-STREAM adds an additional filter to an existing stream.

STREAM-IOTA generates a finite numeric stream that counts from
INTEGER1 to INTEGER2.

(stream->list
  (append-streams (list->stream '(a b c))
                  (stream-iota 1 3)))
                                        ==>  (a b c 1 2 3)
(stream->list
  (filter-stream even?
                 (stream-iota 1 10)))   ==>  (2 4 6 8 10)
(stream->list
  (map-stream (lambda (x) (* 7 x))
              (stream-iota 1 5)))       ==>  (7 14 21 28 35)
(stream->list
  (stream-member (lambda (x) (= 27 x))
                 (stream-iota 1 30)))   ==>  (27 28 29 30)
(stream-extract
  5
  (stream-iota 1 10000000))             ==>  (1 2 3 4 5)