accidentally placed 'null' in wrong file
This commit is contained in:
parent
91ea9ab309
commit
d04b8b0b8d
|
@ -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
|
||||||
|
|
|
@ -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.}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user