JanetDocsPlaygroundI'm feeling luckyGitHub sign in

empty?



    function
    boot.janet on line 127, column 1

    (empty? xs)

    Check if xs is empty.


4 examplesSign in to add an example
Loading...
(empty? :)
# => true
sogaiuPlayground
(empty? {})
# => true
sogaiuPlayground
(empty? [])
# => true
sogaiuPlayground
(empty? "")
# => true
sogaiuPlayground