empty?
builtin-function
(empty? seq)
Returns true if seq is null or an empty collection.
seq
null
make-html > (empty? null) it: true make-html > (empty? '(a b c)) it: false make-html > (empty? "") it: true