|
|
|
emptyP thing
empty? thing
outputs TRUE if the input is the empty word or the empty list, FALSE otherwise.
Examples:
empty? " ;true ;-)
empty? [] ;true ;-)
empty? "Hallo ;false ;-)
empty? [Hallo] ;false ;-)
empty? {} ;false ;-)
|
|
|
|