
- rename old `racket/stream' to `racket/sequence', and adjust to avoid stateful iterations - add a new `racket/stream' library with a `strean-cons' that is based on SRFI 41 - adjust `for' and some sequence constructors like `in-range' to work more directly with streams
5 lines
108 B
Racket
5 lines
108 B
Racket
#lang racket/base
|
|
|
|
(require racket/private/stream-cons)
|
|
(provide (all-from-out racket/private/stream-cons))
|