
Also, updates some of the mzlib files to point at `racket/*' libraries rather than to `scheme/*' ones.
21 lines
367 B
Racket
21 lines
367 B
Racket
#lang scribble/doc
|
|
@(require "common.rkt")
|
|
|
|
@defclass/title[editor-stream-out-bytes-base% editor-stream-out-base% ()]{
|
|
|
|
An @racket[editor-stream-out-bytes-base%] object can be used to write
|
|
editor data into a byte string.
|
|
|
|
@defconstructor[()]{
|
|
|
|
Creates an empty stream.
|
|
|
|
}
|
|
|
|
@defmethod[(get-bytes)
|
|
bytes?]{
|
|
|
|
Returns the current contents of the stream.
|
|
|
|
}}
|