documentation stubs

This commit is contained in:
Danny Yoo 2011-07-22 23:33:46 -04:00
parent 887e986487
commit 8f4518354a

View File

@ -402,6 +402,7 @@ language.
@defform[(current-output-port ...)]{} @defform[(current-output-port ...)]{}
@defform[(current-print ...)]{} @defform[(current-print ...)]{}
@defform[(write ...)]{} @defform[(write ...)]{}
@defform[(write-byte ...)]{}
@defform[(display ...)]{} @defform[(display ...)]{}
@defform[(newline ...)]{} @defform[(newline ...)]{}
@defform[(format ...)]{} @defform[(format ...)]{}
@ -458,14 +459,28 @@ language.
@defform[(angle ...)]{} @defform[(angle ...)]{}
@defform[(magnitude ...)]{} @defform[(magnitude ...)]{}
@defform[(conjugate ...)]{} @defform[(conjugate ...)]{}
@defform[(number->string ...)]{}
@defform[(string->number ...)]{} @defform[(string->number ...)]{}
@defform[(pair? ...)]{} @defform[(number->string ...)]{}
@defform[(random ...)]{}
@defform[(exact? ...)]{} @defform[(exact? ...)]{}
@defform[(integer? ...)]{}
@defform[(zero? ...)]{}
@subsection{String operations}
@defform[(string=? ...)]{}
@defform[(string->symbol ...)]{}
@defform[(string-length ...)] {}
@defform[(string-append ...)] {}
@subsection{Symbol operations}
@defform[(symbol? ...)]{}
@defform[(symbol->string? ...)]{}
@subsection{List operations} @subsection{List operations}
@defform[(pair? ...)]{}
@defform[(cons ...)]{} @defform[(cons ...)]{}
@defform[(car ...)]{} @defform[(car ...)]{}
@defform[(cdr ...)]{} @defform[(cdr ...)]{}
@ -474,12 +489,16 @@ language.
@defform[(append ...)]{} @defform[(append ...)]{}
@defform[(reverse ...)]{} @defform[(reverse ...)]{}
@defform[(map ...)]{} @defform[(map ...)]{}
@defform[(for-each ...)]{}
@defform[(member ...)]{} @defform[(member ...)]{}
@defform[(list-ref ...)]{}
@defform[(memq ...)]{}
@defform[(assq ...)]{}
@subsection{Vector operations} @subsection{Vector operations}
@defform[(vector? ...)]{}
@defform[(make-vector ...)]{} @defform[(make-vector ...)]{}
@defform[(vector ...)]{} @defform[(vector ...)]{}
@defform[(vector-length ...)]{} @defform[(vector-length ...)]{}