jan tolenaar / kiezellisp / index-of-everything

Name

empty?

Usage

builtin-function

Syntax

(empty? seq)

Description

Returns true if seq is null or an empty collection.

make-html > (empty? null)
it: true
make-html > (empty? '(a b c))
it: false
make-html > (empty? "")
it: true