accidentally placed 'null' in wrong file

This commit is contained in:
Matthias Felleisen 2012-06-25 19:59:14 -04:00
parent 91ea9ab309
commit d04b8b0b8d
2 changed files with 1 additions and 3 deletions

View File

@ -12,9 +12,6 @@
(require "provide-and-scribble.rkt" scribble/manual) (require "provide-and-scribble.rkt" scribble/manual)
(define pp (let ([pretty-print (lambda (v) (pretty-write v))]) pretty-print)) (define pp (let ([pretty-print (lambda (v) (pretty-write v))]) pretty-print))
;; somehow null got lost during the scribblization
(provide null)
(provide-and-scribble (provide-and-scribble
procedures procedures

View File

@ -166,6 +166,7 @@
@defproc[(cons? [x any/c]) boolean?]{Determines whether some value is a constructed list.} @defproc[(cons? [x any/c]) boolean?]{Determines whether some value is a constructed list.}
@defproc[(empty? [x any/c]) boolean?]{Determines whether some value is the empty list.} @defproc[(empty? [x any/c]) boolean?]{Determines whether some value is the empty list.}
@defproc[(null? [x any/c]) boolean?]{Determines whether some value is the empty list.} @defproc[(null? [x any/c]) boolean?]{Determines whether some value is the empty list.}
@defproc[(null) list]{Another name for the empty list}
@defproc[((beginner-cons cons) [x any/x][y list?]) list?]{Constructs a list.} @defproc[((beginner-cons cons) [x any/x][y list?]) list?]{Constructs a list.}
@defproc[((beginner-first first) [x cons?]) any/c]{Selects the first item of a non-empty list.} @defproc[((beginner-first first) [x cons?]) any/c]{Selects the first item of a non-empty list.}
@defproc[((beginner-car car) [x cons?]) any/c]{Selects the first item of a non-empty list.} @defproc[((beginner-car car) [x cons?]) any/c]{Selects the first item of a non-empty list.}