racket/collects/racket/main.rkt
Matthew Flatt e652546bf5 add streams to `racket'
- 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
2011-03-18 19:05:23 -06:00

64 lines
1.8 KiB
Racket

#lang racket/private
(require racket/base
racket/contract
racket/class
racket/unit
racket/dict
racket/include
racket/pretty
racket/math
racket/match
racket/shared
racket/set
racket/tcp
racket/udp
racket/list
racket/vector
racket/string
racket/bytes
racket/function
racket/path
racket/file
racket/place
racket/port
racket/cmdline
racket/promise
racket/bool
racket/stream
racket/sequence
racket/local
racket/system
(for-syntax racket/base))
(provide (all-from-out racket/contract
racket/class
racket/unit
racket/dict
racket/include
racket/pretty
racket/math
racket/match
racket/shared
racket/base
racket/set
racket/tcp
racket/udp
racket/list
racket/vector
racket/string
racket/bytes
racket/function
racket/path
racket/file
racket/place
racket/port
racket/cmdline
racket/promise
racket/bool
racket/stream
racket/sequence
racket/local
racket/system)
(for-syntax (all-from-out racket/base)))