Next: lists compar, Previous: lists cons, Up: lists [Index]
Defined as:
(lambda (x) (not (pair? x)))
provided as a procedure as it can be useful as the termination condition for list–processing procedures that wish to handle all finite lists, both proper and dotted.
Return #t if obj is a circular list. The ‘/or-null’
variant returns #t also if obj is null.
Return #t if obj is a dotted list. The ‘/or-null’
variant returns #t also if obj is null.
Return #t if all the ell are null or no arguments are given.
Return #t if at least one of the ell is null. Return
#f if no arguments are given.
Return two values being the return values of and-null? and
or-null? applied to the ell arguments.